Upgrade: [dependabot] - bump NHSDigital/eps-workflow-quality-checks from 4.1.3 to 5.1.0 #950
Workflow file for this run
This file contains hidden or 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: Pull Request Checks | ||
| on: | ||
| pull_request: | ||
| branches: [main] | ||
| jobs: | ||
| quality_checks: | ||
| uses: NHSDigital/eps-workflow-quality-checks/.github/workflows/[email protected] | ||
|
Check failure on line 9 in .github/workflows/pull_request.yml
|
||
| secrets: | ||
| SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | ||
| pr_title_format_check: | ||
| uses: NHSDigital/eps-workflow-semantic-release/.github/workflows/pr_title_check.yml@f80157cecce288dd175e61b477a1d2dbe9c88b99 | ||
| get_asdf_version: | ||
| runs-on: ubuntu-22.04 | ||
| outputs: | ||
| asdf_version: ${{ steps.asdf-version.outputs.version }} | ||
| tag_format: ${{ steps.load-config.outputs.TAG_FORMAT }} | ||
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@v5 | ||
| - name: Get asdf version | ||
| id: asdf-version | ||
| run: echo "version=$(awk '!/^#/ && NF {print $1; exit}' .tool-versions.asdf)" >> "$GITHUB_OUTPUT" | ||
| - name: Load config value | ||
| id: load-config | ||
| run: | | ||
| TAG_FORMAT=$(yq '.TAG_FORMAT' .github/config/settings.yml) | ||
| echo "TAG_FORMAT=$TAG_FORMAT" >> "$GITHUB_OUTPUT" | ||
| tag_release: | ||
| needs: [get_asdf_version] | ||
| uses: NHSDigital/eps-workflow-semantic-release/.github/workflows/tag-release.yml@f80157cecce288dd175e61b477a1d2dbe9c88b99 | ||
| with: | ||
| dry_run: true | ||
| asdfVersion: ${{ needs.get_asdf_version.outputs.asdf_version }} | ||
| branch_name: ${{ github.event.pull_request.head.ref }} | ||
| publish_package: false | ||
| tag_format: ${{ needs.get_asdf_version.outputs.tag_format }} | ||
| secrets: inherit | ||