-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Sync over the latest and greatest spellcheck config
- Loading branch information
Showing
4 changed files
with
79 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,3 +14,4 @@ Sorce | |
press | ||
deets | ||
organisation | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
--- | ||
name: "CLA Assistant" | ||
on: | ||
issue_comment: | ||
types: [created] | ||
pull_request_target: | ||
types: [opened,closed,synchronize] | ||
types: [opened, closed, synchronize] | ||
|
||
jobs: | ||
CLAssistant: | ||
|
@@ -14,13 +15,13 @@ jobs: | |
uses: contributor-assistant/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
PERSONAL_ACCESS_TOKEN : ${{ secrets.CLA_ACCESS_TOKEN }} | ||
PERSONAL_ACCESS_TOKEN: ${{ secrets.CLA_ACCESS_TOKEN }} | ||
with: | ||
path-to-signatures: 'signatures/version1/cla.json' | ||
path-to-document: 'https://github.com/mondoohq/.github/blob/master/CLA.md' | ||
custom-pr-sign-comment: 'I have read the Mondoo CLA Document and I hereby sign the CLA' | ||
custom-notsigned-prcomment: 'Thank you for your submission, we really appreciate it. Before we can accept your contribution, we ask that you sign the [Mondoo Contributor License Agreement](https://github.com/mondoohq/.github/blob/master/CLA.md). You can sign the CLA by adding a new comment to this pull request and pasting exactly the following text.' | ||
path-to-signatures: "signatures/version1/cla.json" | ||
path-to-document: "https://github.com/mondoohq/.github/blob/master/CLA.md" | ||
custom-pr-sign-comment: "I have read the Mondoo CLA Document and I hereby sign the CLA" | ||
custom-notsigned-prcomment: "Thank you for your submission. We really appreciate it. Before we can accept your contribution, we ask that you sign the [Mondoo Contributor License Agreement](https://github.com/mondoohq/.github/blob/master/CLA.md). You can sign the CLA by adding a new comment to this pull request and pasting exactly the following text." | ||
remote-repository-name: cla | ||
remote-organization-name: mondoohq | ||
branch: 'main' | ||
branch: "main" | ||
allowlist: mondoo-tools,github-actions[bot],dependabot[bot] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,12 +23,12 @@ jobs: | |
steps: | ||
- name: check-spelling | ||
id: spelling | ||
uses: check-spelling/[email protected].21 | ||
uses: check-spelling/[email protected].23 | ||
with: | ||
suppress_push_for_open_pull_request: 1 | ||
checkout: true | ||
post_comment: 0 | ||
dictionary_source_prefixes: '{"mondoo": "https://raw.githubusercontent.com/mondoohq/spellcheck-dictionary/main/", "cspell": "https://raw.githubusercontent.com/check-spelling/cspell-dicts/v20220816/dictionaries/"}' | ||
dictionary_source_prefixes: '{"mondoo": "https://raw.githubusercontent.com/mondoohq/spellcheck-dictionary/main/", "cspell": "https://raw.githubusercontent.com/check-spelling/cspell-dicts/v20230509/dictionaries/"}' | ||
extra_dictionaries: | ||
cspell:aws/aws.txt | ||
cspell:filetypes/filetypes.txt | ||
|
@@ -47,7 +47,7 @@ jobs: | |
if: (success() || failure()) && needs.spelling.outputs.followup | ||
steps: | ||
- name: comment | ||
uses: check-spelling/[email protected].21 | ||
uses: check-spelling/[email protected].23 | ||
with: | ||
checkout: true | ||
task: ${{ needs.spelling.outputs.followup }} |