Skip to content

Commit

Permalink
ci(.github/action): change a project and column name for moving relea…
Browse files Browse the repository at this point in the history
…sed and docs issues in the abort-release-candidate and release-candidate-ready-for-qa actions
  • Loading branch information
maksym-shynkarenko committed Apr 24, 2024
1 parent 910e3d9 commit 9b34bf1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 21 deletions.
16 changes: 3 additions & 13 deletions .github/actions/abort-release-candidate-v1/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,16 +53,6 @@ runs:
env:
GH_TOKEN: ${{ inputs.token }}

- name: Move release candidate issue to `Not Planned` column (Board 66)
if: steps.get-release-issue.outputs.issue-url != null
uses: dequelabs/axe-api-team-public/.github/actions/add-to-board-v1@main
with:
issue-urls: ${{ steps.get-release-issue.outputs.issue-url }}
column-name: 'Not Doing'
project-number: '66'
env:
GH_TOKEN: ${{ inputs.token }}

- name: Move release candidate issue to `Release Cancelled` column (Board 103)
if: steps.get-release-issue.outputs.issue-url != null
uses: dequelabs/axe-api-team-public/.github/actions/add-to-board-v1@main
Expand Down Expand Up @@ -92,13 +82,13 @@ runs:
env:
GH_TOKEN: ${{ inputs.token }}

- name: Move release candidate doc issue to `Not Planned` column (Board 66)
- name: Move release candidate doc issue to `Cancelled` column (Board 171)
if: inputs.docs-repo != '' && steps.get-release-issue-from-docs-repo.outputs.issue-url != null
uses: dequelabs/axe-api-team-public/.github/actions/add-to-board-v1@main
with:
issue-urls: ${{ steps.get-release-issue-from-docs-repo.outputs.issue-url }}
column-name: 'Not Doing'
project-number: '66'
column-name: 'Cancelled'
project-number: '171'
env:
GH_TOKEN: ${{ inputs.token }}

Expand Down
10 changes: 2 additions & 8 deletions .github/actions/release-candidate-ready-for-qa-v1/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,18 +46,12 @@ runs:
run: gh issue comment ${{ steps.get-release-issue.outputs.issue-url }} --body "$BODY"
env:
BODY: "Please use the release candidate build: ${{ steps.set-build-name.outputs.build-name }}"
# Move an issue to the "Ready for QA" column on the project #66
- uses: dequelabs/axe-api-team-public/.github/actions/add-to-board-v1@main
with:
issue-urls: ${{ steps.get-release-issue.outputs.issue-url }}
project-number: 66
column-name: Ready for QA
# Move an issue to the "Ready for QA" column on the board project #103
# Move an issue to the "In QA" column on the board project #103
- uses: dequelabs/axe-api-team-public/.github/actions/add-to-board-v1@main
with:
issue-urls: ${{ steps.get-release-issue.outputs.issue-url }}
project-number: 103
column-name: Ready for QA
column-name: In QA
- name: Slack notification
uses: rtCamp/action-slack-notify@b24d75fe0e728a4bf9fc42ee217caa686d141ee8 # tag=v2.2.1
env:
Expand Down

0 comments on commit 9b34bf1

Please sign in to comment.