Update validation/gravity-retaining-wall/details.md #5
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
name: Check Jira key in branch exists and is valid | |
on: | |
push: | |
branches: | |
- "**" | |
- "!main" | |
workflow_dispatch: | |
jobs: | |
branch-jira-check: | |
runs-on: ubuntu-24.04 | |
if: | | |
startsWith( github.ref_name, 'release') == false && | |
startsWith( github.ref_name, 'dependabot') == false | |
steps: | |
- name: Branch name contains Jira key | |
uses: arup-group/actions-composite-oasys-jira-check/[email protected] | |
with: | |
valid-branch-names: task|test|bugfix|feature|hotfix|epic|debt | |
jira-username: [email protected] | |
jira-password: ${{ secrets.JIRA_PASSWORD }} |