From 9a3d06a30fb9e2af349050d9a6beb6f61a59895b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zolt=C3=A1n=20Leh=C3=B3czky?= Date: Sun, 10 Mar 2024 16:40:44 +0100 Subject: [PATCH 1/8] Adding "XSS" to the Security spelling dictionary --- .github/actions/spelling/action.yml | 2 +- .github/actions/spelling/dictionaries/Security.txt | 1 + .github/workflows/spelling-this-repo.yml | 2 +- .github/workflows/spelling.yml | 4 ++-- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/actions/spelling/action.yml b/.github/actions/spelling/action.yml index 2effdc400..931888a3b 100644 --- a/.github/actions/spelling/action.yml +++ b/.github/actions/spelling/action.yml @@ -130,7 +130,7 @@ runs: shell: pwsh run: | $defaultPrefixes = @{ - 'lombiq-lgha' = 'https://raw.githubusercontent.com/Lombiq/GitHub-Actions/dev/.github/actions/spelling/' + 'lombiq-lgha' = 'https://raw.githubusercontent.com/Lombiq/GitHub-Actions/issue/LMBQ-267/.github/actions/spelling/' 'cspell' = 'https://raw.githubusercontent.com/check-spelling/cspell-dicts/v20230509/dictionaries/' } diff --git a/.github/actions/spelling/dictionaries/Security.txt b/.github/actions/spelling/dictionaries/Security.txt index 03bdd66a6..c1bfe8780 100644 --- a/.github/actions/spelling/dictionaries/Security.txt +++ b/.github/actions/spelling/dictionaries/Security.txt @@ -3,3 +3,4 @@ clickjacking nosniff softwaresecurityproject PII +XSS diff --git a/.github/workflows/spelling-this-repo.yml b/.github/workflows/spelling-this-repo.yml index cc1d2dd9b..96d009c8a 100644 --- a/.github/workflows/spelling-this-repo.yml +++ b/.github/workflows/spelling-this-repo.yml @@ -11,7 +11,7 @@ on: jobs: spelling: name: Spelling - uses: Lombiq/GitHub-Actions/.github/workflows/spelling.yml@dev + uses: Lombiq/GitHub-Actions/.github/workflows/spelling.yml@issue/LMBQ-267 with: additional-dictionaries: | cspell:companies/src/companies.txt diff --git a/.github/workflows/spelling.yml b/.github/workflows/spelling.yml index 0348e9230..902430fe5 100644 --- a/.github/workflows/spelling.yml +++ b/.github/workflows/spelling.yml @@ -111,7 +111,7 @@ jobs: - name: Check Spelling id: check-spelling-action - uses: Lombiq/GitHub-Actions/.github/actions/spelling@dev + uses: Lombiq/GitHub-Actions/.github/actions/spelling@issue/LMBQ-267 with: merge-file-excludes: ${{ inputs.merge-file-excludes }} merge-forbidden-patterns: ${{ inputs.merge-forbidden-patterns }} @@ -138,7 +138,7 @@ jobs: if: always() && needs.check-spelling.outputs.followup && github.event_name == 'pull_request' steps: - name: Comment (PR) - uses: Lombiq/GitHub-Actions/.github/actions/spelling@dev + uses: Lombiq/GitHub-Actions/.github/actions/spelling@issue/LMBQ-267 with: post-comment: 1 task: ${{ needs.check-spelling.outputs.followup }} From c6fb94ed6a0a061c207526b767b45c96373be06c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zolt=C3=A1n=20Leh=C3=B3czky?= Date: Sun, 10 Mar 2024 16:43:43 +0100 Subject: [PATCH 2/8] "Xss" spelling too --- .github/actions/spelling/dictionaries/Security.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/actions/spelling/dictionaries/Security.txt b/.github/actions/spelling/dictionaries/Security.txt index c1bfe8780..adeabe682 100644 --- a/.github/actions/spelling/dictionaries/Security.txt +++ b/.github/actions/spelling/dictionaries/Security.txt @@ -4,3 +4,4 @@ nosniff softwaresecurityproject PII XSS +Xss From 0c718700ea923e4b0bb46bbb27d01dbf79223be1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zolt=C3=A1n=20Leh=C3=B3czky?= Date: Sun, 10 Mar 2024 17:07:09 +0100 Subject: [PATCH 3/8] Centralizing buildsville/add-remove-label usage --- .github/actions/add-remove-label/action.yml | 35 +++++++++++++++++++ .../auto-merge-pull-request/action.yml | 3 +- .../auto-transition-jira-issue/action.yml | 3 +- .../post-pull-request-checks-automation.yml | 7 ++-- 4 files changed, 40 insertions(+), 8 deletions(-) create mode 100644 .github/actions/add-remove-label/action.yml diff --git a/.github/actions/add-remove-label/action.yml b/.github/actions/add-remove-label/action.yml new file mode 100644 index 000000000..b7108db5b --- /dev/null +++ b/.github/actions/add-remove-label/action.yml @@ -0,0 +1,35 @@ +name: Add/Remove Label +description: > + Runs buildsville/add-remove-label. Exists only to centralize which version of the action we use. Intentionally not + documented in Actions.md since it's only meant for internal use. + +# Copied from https://github.com/buildsville/add-remove-label/blob/master/action.yml. +inputs: + token: + description: 'github token' + required: true + default: '' + labels: + description: 'labels to edit' + required: false + default: '' + label: + description: 'label to edit' + required: false + default: '' + type: + description: 'add or remove' + required: true + default: '' + +runs: + using: "composite" + steps: + - name: Add/Remove Label + # v2.0.1 + uses: buildsville/add-remove-label@ac59c9f0aeb66eb12d6366eb1d69ec1906e9ef9a + with: + token: ${{ inputs.token }} + labels: ${{ inputs.token }} + label: ${{ inputs.label }} + type: ${{ inputs.type }} diff --git a/.github/actions/auto-merge-pull-request/action.yml b/.github/actions/auto-merge-pull-request/action.yml index 538b43fc6..1a52c2eee 100644 --- a/.github/actions/auto-merge-pull-request/action.yml +++ b/.github/actions/auto-merge-pull-request/action.yml @@ -37,8 +37,7 @@ runs: - name: Remove Label if: steps.check-mergeability.outputs.contains-label == 'true' - # v2.0.0 - uses: buildsville/add-remove-label@eeae411a9be2e173f2420e1644514edbecc4e835 + uses: Lombiq/GitHub-Actions/.github/actions/add-remove-label@issue/OSOE-188 with: token: ${{ env.GITHUB_TOKEN }} labels: merge-if-checks-succeed diff --git a/.github/actions/auto-transition-jira-issue/action.yml b/.github/actions/auto-transition-jira-issue/action.yml index 062c3d950..96db76eda 100644 --- a/.github/actions/auto-transition-jira-issue/action.yml +++ b/.github/actions/auto-transition-jira-issue/action.yml @@ -41,8 +41,7 @@ runs: Set-JiraIssueStatus @parameters - name: Remove Label - # v2.0.0 - uses: buildsville/add-remove-label@eeae411a9be2e173f2420e1644514edbecc4e835 + uses: Lombiq/GitHub-Actions/.github/actions/add-remove-label@issue/OSOE-188 with: token: ${{ env.GITHUB_TOKEN }} labels: merge-and-resolve-jira-issue-if-checks-succeed, resolve-jira-issue-if-checks-succeed, done-jira-issue-if-checks-succeed diff --git a/.github/workflows/post-pull-request-checks-automation.yml b/.github/workflows/post-pull-request-checks-automation.yml index a65e83d0d..c7544c553 100644 --- a/.github/workflows/post-pull-request-checks-automation.yml +++ b/.github/workflows/post-pull-request-checks-automation.yml @@ -76,7 +76,7 @@ jobs: - name: Automatically Merge Pull Request if: steps.check-steps-should-run.outputs.is-latest != 'false' - uses: Lombiq/GitHub-Actions/.github/actions/auto-merge-pull-request@dev + uses: Lombiq/GitHub-Actions/.github/actions/auto-merge-pull-request@issue/OSOE-188 env: GITHUB_TOKEN: ${{ env.MERGE_TOKEN }} with: @@ -84,7 +84,7 @@ jobs: - name: Automatically Transition Jira issue if: steps.check-steps-should-run.outputs.is-latest != 'false' - uses: Lombiq/GitHub-Actions/.github/actions/auto-transition-jira-issue@dev + uses: Lombiq/GitHub-Actions/.github/actions/auto-transition-jira-issue@issue/OSOE-188 env: GITHUB_TOKEN: ${{ env.MERGE_TOKEN }} JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }} @@ -93,8 +93,7 @@ jobs: - name: Remove Label if: steps.check-steps-should-run.outputs.is-latest != 'false' - # v2.0.0 - uses: buildsville/add-remove-label@eeae411a9be2e173f2420e1644514edbecc4e835 + uses: Lombiq/GitHub-Actions/.github/actions/add-remove-label@issue/OSOE-188 with: token: ${{ env.MERGE_TOKEN }} labels: merge-and-resolve-jira-issue-if-checks-succeed From 93165b9b4d284ba220664fbb1a06a6e64ee46b1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zolt=C3=A1n=20Leh=C3=B3czky?= Date: Sun, 10 Mar 2024 17:10:25 +0100 Subject: [PATCH 4/8] Fixing GHA branch references --- .github/actions/auto-merge-pull-request/action.yml | 2 +- .github/actions/auto-transition-jira-issue/action.yml | 2 +- .github/workflows/post-pull-request-checks-automation.yml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/actions/auto-merge-pull-request/action.yml b/.github/actions/auto-merge-pull-request/action.yml index 1a52c2eee..fa49a50cf 100644 --- a/.github/actions/auto-merge-pull-request/action.yml +++ b/.github/actions/auto-merge-pull-request/action.yml @@ -37,7 +37,7 @@ runs: - name: Remove Label if: steps.check-mergeability.outputs.contains-label == 'true' - uses: Lombiq/GitHub-Actions/.github/actions/add-remove-label@issue/OSOE-188 + uses: Lombiq/GitHub-Actions/.github/actions/add-remove-label@issue/LMBQ-267 with: token: ${{ env.GITHUB_TOKEN }} labels: merge-if-checks-succeed diff --git a/.github/actions/auto-transition-jira-issue/action.yml b/.github/actions/auto-transition-jira-issue/action.yml index 96db76eda..4dc3807d5 100644 --- a/.github/actions/auto-transition-jira-issue/action.yml +++ b/.github/actions/auto-transition-jira-issue/action.yml @@ -41,7 +41,7 @@ runs: Set-JiraIssueStatus @parameters - name: Remove Label - uses: Lombiq/GitHub-Actions/.github/actions/add-remove-label@issue/OSOE-188 + uses: Lombiq/GitHub-Actions/.github/actions/add-remove-label@issue/LMBQ-267 with: token: ${{ env.GITHUB_TOKEN }} labels: merge-and-resolve-jira-issue-if-checks-succeed, resolve-jira-issue-if-checks-succeed, done-jira-issue-if-checks-succeed diff --git a/.github/workflows/post-pull-request-checks-automation.yml b/.github/workflows/post-pull-request-checks-automation.yml index c7544c553..2a0397d28 100644 --- a/.github/workflows/post-pull-request-checks-automation.yml +++ b/.github/workflows/post-pull-request-checks-automation.yml @@ -76,7 +76,7 @@ jobs: - name: Automatically Merge Pull Request if: steps.check-steps-should-run.outputs.is-latest != 'false' - uses: Lombiq/GitHub-Actions/.github/actions/auto-merge-pull-request@issue/OSOE-188 + uses: Lombiq/GitHub-Actions/.github/actions/auto-merge-pull-request@issue/LMBQ-267 env: GITHUB_TOKEN: ${{ env.MERGE_TOKEN }} with: @@ -84,7 +84,7 @@ jobs: - name: Automatically Transition Jira issue if: steps.check-steps-should-run.outputs.is-latest != 'false' - uses: Lombiq/GitHub-Actions/.github/actions/auto-transition-jira-issue@issue/OSOE-188 + uses: Lombiq/GitHub-Actions/.github/actions/auto-transition-jira-issue@issue/LMBQ-267 env: GITHUB_TOKEN: ${{ env.MERGE_TOKEN }} JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }} @@ -93,7 +93,7 @@ jobs: - name: Remove Label if: steps.check-steps-should-run.outputs.is-latest != 'false' - uses: Lombiq/GitHub-Actions/.github/actions/add-remove-label@issue/OSOE-188 + uses: Lombiq/GitHub-Actions/.github/actions/add-remove-label@issue/LMBQ-267 with: token: ${{ env.MERGE_TOKEN }} labels: merge-and-resolve-jira-issue-if-checks-succeed From f3bce5efa64fd88b6e9047c46e00e5bd3a3e9996 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zolt=C3=A1n=20Leh=C3=B3czky?= Date: Sun, 10 Mar 2024 17:47:53 +0100 Subject: [PATCH 5/8] Fixing parameter passing --- .github/actions/add-remove-label/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/add-remove-label/action.yml b/.github/actions/add-remove-label/action.yml index b7108db5b..5231f8844 100644 --- a/.github/actions/add-remove-label/action.yml +++ b/.github/actions/add-remove-label/action.yml @@ -30,6 +30,6 @@ runs: uses: buildsville/add-remove-label@ac59c9f0aeb66eb12d6366eb1d69ec1906e9ef9a with: token: ${{ inputs.token }} - labels: ${{ inputs.token }} + labels: ${{ inputs.labels }} label: ${{ inputs.label }} type: ${{ inputs.type }} From 4b69ddb87c9a409d141ba44a5f5d310c6847e3f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zolt=C3=A1n=20Leh=C3=B3czky?= Date: Mon, 18 Mar 2024 16:19:22 +0100 Subject: [PATCH 6/8] Consolidation verification docs --- .github/actions/verify-dotnet-consolidation/action.yml | 4 +++- .github/workflows/build-and-test-dotnet.yml | 3 ++- .github/workflows/build-and-test-orchard-core.yml | 3 ++- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/actions/verify-dotnet-consolidation/action.yml b/.github/actions/verify-dotnet-consolidation/action.yml index 803fcd8c8..be20f84ae 100644 --- a/.github/actions/verify-dotnet-consolidation/action.yml +++ b/.github/actions/verify-dotnet-consolidation/action.yml @@ -17,7 +17,9 @@ inputs: exclude-version-regex: required: false default: '\-alpha' - description: A regular expression to match package versions that will be skipped during checking. + description: > + A regular expression to match package versions that will be skipped during NuGet package consolidation. See the + dotnet consolidate docs for details: https://github.com/olsh/dotnet-consolidate?tab=readme-ov-file#usage. runs: using: "composite" diff --git a/.github/workflows/build-and-test-dotnet.yml b/.github/workflows/build-and-test-dotnet.yml index 8861c8c34..eeef355d3 100644 --- a/.github/workflows/build-and-test-dotnet.yml +++ b/.github/workflows/build-and-test-dotnet.yml @@ -136,7 +136,8 @@ on: required: false default: '\-alpha' description: > - A regular expression to match package versions that will be skipped during NuGet package consolidation. + A regular expression to match package versions that will be skipped during NuGet package consolidation. See + the dotnet consolidate docs for details: https://github.com/olsh/dotnet-consolidate?tab=readme-ov-file#usage. warnings-as-errors: type: string default: 'true' diff --git a/.github/workflows/build-and-test-orchard-core.yml b/.github/workflows/build-and-test-orchard-core.yml index e66a93666..0ecfc0e8b 100644 --- a/.github/workflows/build-and-test-orchard-core.yml +++ b/.github/workflows/build-and-test-orchard-core.yml @@ -163,7 +163,8 @@ on: required: false default: '\-alpha' description: > - A regular expression to match package versions that will be skipped during NuGet package consolidation. + A regular expression to match package versions that will be skipped during NuGet package consolidation. See + the dotnet consolidate docs for details: https://github.com/olsh/dotnet-consolidate?tab=readme-ov-file#usage. warnings-as-errors: type: string default: 'true' From 749433407f4b949f917a1bce74193a38d2f2be73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zolt=C3=A1n=20Leh=C3=B3czky?= Date: Mon, 18 Mar 2024 16:27:09 +0100 Subject: [PATCH 7/8] Pointing GHA to issue branch --- .github/workflows/build-and-test-dotnet.yml | 2 +- .github/workflows/build-and-test-orchard-core.yml | 2 +- .github/workflows/build-dotnet.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-and-test-dotnet.yml b/.github/workflows/build-and-test-dotnet.yml index eeef355d3..37d8d056a 100644 --- a/.github/workflows/build-and-test-dotnet.yml +++ b/.github/workflows/build-and-test-dotnet.yml @@ -189,7 +189,7 @@ jobs: - name: Verify that .NET packages are consolidated if: ${{ inputs.verify-dotnet-consolidation }} - uses: Lombiq/GitHub-Actions/.github/actions/verify-dotnet-consolidation@dev + uses: Lombiq/GitHub-Actions/.github/actions/verify-dotnet-consolidation@issue/LMBQ-267 with: directory: ${{ inputs.build-directory }} exclude-version-regex: ${{ inputs.dotnet-consolidation-exclude-version-regex }} diff --git a/.github/workflows/build-and-test-orchard-core.yml b/.github/workflows/build-and-test-orchard-core.yml index 0ecfc0e8b..73cd968b3 100644 --- a/.github/workflows/build-and-test-orchard-core.yml +++ b/.github/workflows/build-and-test-orchard-core.yml @@ -212,7 +212,7 @@ jobs: - name: Verify that .NET packages are consolidated if: ${{ inputs.verify-dotnet-consolidation }} - uses: Lombiq/GitHub-Actions/.github/actions/verify-dotnet-consolidation@dev + uses: Lombiq/GitHub-Actions/.github/actions/verify-dotnet-consolidation@issue/LMBQ-267 with: directory: ${{ inputs.build-directory }} exclude-version-regex: ${{ inputs.dotnet-consolidation-exclude-version-regex }} diff --git a/.github/workflows/build-dotnet.yml b/.github/workflows/build-dotnet.yml index 44b7bb685..35199fe72 100644 --- a/.github/workflows/build-dotnet.yml +++ b/.github/workflows/build-dotnet.yml @@ -99,7 +99,7 @@ jobs: - name: Verify that .NET packages are consolidated if: ${{ inputs.verify-dotnet-consolidation }} - uses: Lombiq/GitHub-Actions/.github/actions/verify-dotnet-consolidation@dev + uses: Lombiq/GitHub-Actions/.github/actions/verify-dotnet-consolidation@issue/LMBQ-267 with: directory: ${{ inputs.build-directory }} From 04911c9dfe184567058f0473938c1ddcc67fa878 Mon Sep 17 00:00:00 2001 From: Szabolcs Deme Date: Wed, 3 Apr 2024 01:48:56 +0200 Subject: [PATCH 8/8] Replacing issue branch references with dev in workflows and actions --- .github/actions/auto-merge-pull-request/action.yml | 2 +- .github/actions/auto-transition-jira-issue/action.yml | 2 +- .github/actions/spelling/action.yml | 2 +- .github/workflows/build-and-test-dotnet.yml | 2 +- .github/workflows/build-and-test-orchard-core.yml | 2 +- .github/workflows/build-dotnet.yml | 2 +- .github/workflows/post-pull-request-checks-automation.yml | 6 +++--- .github/workflows/spelling-this-repo.yml | 2 +- .github/workflows/spelling.yml | 4 ++-- 9 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/actions/auto-merge-pull-request/action.yml b/.github/actions/auto-merge-pull-request/action.yml index fa49a50cf..6a1688a30 100644 --- a/.github/actions/auto-merge-pull-request/action.yml +++ b/.github/actions/auto-merge-pull-request/action.yml @@ -37,7 +37,7 @@ runs: - name: Remove Label if: steps.check-mergeability.outputs.contains-label == 'true' - uses: Lombiq/GitHub-Actions/.github/actions/add-remove-label@issue/LMBQ-267 + uses: Lombiq/GitHub-Actions/.github/actions/add-remove-label@dev with: token: ${{ env.GITHUB_TOKEN }} labels: merge-if-checks-succeed diff --git a/.github/actions/auto-transition-jira-issue/action.yml b/.github/actions/auto-transition-jira-issue/action.yml index 4dc3807d5..db096d11c 100644 --- a/.github/actions/auto-transition-jira-issue/action.yml +++ b/.github/actions/auto-transition-jira-issue/action.yml @@ -41,7 +41,7 @@ runs: Set-JiraIssueStatus @parameters - name: Remove Label - uses: Lombiq/GitHub-Actions/.github/actions/add-remove-label@issue/LMBQ-267 + uses: Lombiq/GitHub-Actions/.github/actions/add-remove-label@dev with: token: ${{ env.GITHUB_TOKEN }} labels: merge-and-resolve-jira-issue-if-checks-succeed, resolve-jira-issue-if-checks-succeed, done-jira-issue-if-checks-succeed diff --git a/.github/actions/spelling/action.yml b/.github/actions/spelling/action.yml index 931888a3b..2effdc400 100644 --- a/.github/actions/spelling/action.yml +++ b/.github/actions/spelling/action.yml @@ -130,7 +130,7 @@ runs: shell: pwsh run: | $defaultPrefixes = @{ - 'lombiq-lgha' = 'https://raw.githubusercontent.com/Lombiq/GitHub-Actions/issue/LMBQ-267/.github/actions/spelling/' + 'lombiq-lgha' = 'https://raw.githubusercontent.com/Lombiq/GitHub-Actions/dev/.github/actions/spelling/' 'cspell' = 'https://raw.githubusercontent.com/check-spelling/cspell-dicts/v20230509/dictionaries/' } diff --git a/.github/workflows/build-and-test-dotnet.yml b/.github/workflows/build-and-test-dotnet.yml index 37d8d056a..eeef355d3 100644 --- a/.github/workflows/build-and-test-dotnet.yml +++ b/.github/workflows/build-and-test-dotnet.yml @@ -189,7 +189,7 @@ jobs: - name: Verify that .NET packages are consolidated if: ${{ inputs.verify-dotnet-consolidation }} - uses: Lombiq/GitHub-Actions/.github/actions/verify-dotnet-consolidation@issue/LMBQ-267 + uses: Lombiq/GitHub-Actions/.github/actions/verify-dotnet-consolidation@dev with: directory: ${{ inputs.build-directory }} exclude-version-regex: ${{ inputs.dotnet-consolidation-exclude-version-regex }} diff --git a/.github/workflows/build-and-test-orchard-core.yml b/.github/workflows/build-and-test-orchard-core.yml index 73cd968b3..0ecfc0e8b 100644 --- a/.github/workflows/build-and-test-orchard-core.yml +++ b/.github/workflows/build-and-test-orchard-core.yml @@ -212,7 +212,7 @@ jobs: - name: Verify that .NET packages are consolidated if: ${{ inputs.verify-dotnet-consolidation }} - uses: Lombiq/GitHub-Actions/.github/actions/verify-dotnet-consolidation@issue/LMBQ-267 + uses: Lombiq/GitHub-Actions/.github/actions/verify-dotnet-consolidation@dev with: directory: ${{ inputs.build-directory }} exclude-version-regex: ${{ inputs.dotnet-consolidation-exclude-version-regex }} diff --git a/.github/workflows/build-dotnet.yml b/.github/workflows/build-dotnet.yml index 35199fe72..44b7bb685 100644 --- a/.github/workflows/build-dotnet.yml +++ b/.github/workflows/build-dotnet.yml @@ -99,7 +99,7 @@ jobs: - name: Verify that .NET packages are consolidated if: ${{ inputs.verify-dotnet-consolidation }} - uses: Lombiq/GitHub-Actions/.github/actions/verify-dotnet-consolidation@issue/LMBQ-267 + uses: Lombiq/GitHub-Actions/.github/actions/verify-dotnet-consolidation@dev with: directory: ${{ inputs.build-directory }} diff --git a/.github/workflows/post-pull-request-checks-automation.yml b/.github/workflows/post-pull-request-checks-automation.yml index 2a0397d28..35ca9dd22 100644 --- a/.github/workflows/post-pull-request-checks-automation.yml +++ b/.github/workflows/post-pull-request-checks-automation.yml @@ -76,7 +76,7 @@ jobs: - name: Automatically Merge Pull Request if: steps.check-steps-should-run.outputs.is-latest != 'false' - uses: Lombiq/GitHub-Actions/.github/actions/auto-merge-pull-request@issue/LMBQ-267 + uses: Lombiq/GitHub-Actions/.github/actions/auto-merge-pull-request@dev env: GITHUB_TOKEN: ${{ env.MERGE_TOKEN }} with: @@ -84,7 +84,7 @@ jobs: - name: Automatically Transition Jira issue if: steps.check-steps-should-run.outputs.is-latest != 'false' - uses: Lombiq/GitHub-Actions/.github/actions/auto-transition-jira-issue@issue/LMBQ-267 + uses: Lombiq/GitHub-Actions/.github/actions/auto-transition-jira-issue@dev env: GITHUB_TOKEN: ${{ env.MERGE_TOKEN }} JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }} @@ -93,7 +93,7 @@ jobs: - name: Remove Label if: steps.check-steps-should-run.outputs.is-latest != 'false' - uses: Lombiq/GitHub-Actions/.github/actions/add-remove-label@issue/LMBQ-267 + uses: Lombiq/GitHub-Actions/.github/actions/add-remove-label@dev with: token: ${{ env.MERGE_TOKEN }} labels: merge-and-resolve-jira-issue-if-checks-succeed diff --git a/.github/workflows/spelling-this-repo.yml b/.github/workflows/spelling-this-repo.yml index 96d009c8a..cc1d2dd9b 100644 --- a/.github/workflows/spelling-this-repo.yml +++ b/.github/workflows/spelling-this-repo.yml @@ -11,7 +11,7 @@ on: jobs: spelling: name: Spelling - uses: Lombiq/GitHub-Actions/.github/workflows/spelling.yml@issue/LMBQ-267 + uses: Lombiq/GitHub-Actions/.github/workflows/spelling.yml@dev with: additional-dictionaries: | cspell:companies/src/companies.txt diff --git a/.github/workflows/spelling.yml b/.github/workflows/spelling.yml index 902430fe5..0348e9230 100644 --- a/.github/workflows/spelling.yml +++ b/.github/workflows/spelling.yml @@ -111,7 +111,7 @@ jobs: - name: Check Spelling id: check-spelling-action - uses: Lombiq/GitHub-Actions/.github/actions/spelling@issue/LMBQ-267 + uses: Lombiq/GitHub-Actions/.github/actions/spelling@dev with: merge-file-excludes: ${{ inputs.merge-file-excludes }} merge-forbidden-patterns: ${{ inputs.merge-forbidden-patterns }} @@ -138,7 +138,7 @@ jobs: if: always() && needs.check-spelling.outputs.followup && github.event_name == 'pull_request' steps: - name: Comment (PR) - uses: Lombiq/GitHub-Actions/.github/actions/spelling@issue/LMBQ-267 + uses: Lombiq/GitHub-Actions/.github/actions/spelling@dev with: post-comment: 1 task: ${{ needs.check-spelling.outputs.followup }}