Create charts PR #148
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: Create charts PR | |
| on: | |
| workflow_dispatch: | |
| workflow_run: | |
| workflows: [ "Build and push multi-arch images" ] | |
| types: | |
| - completed | |
| branches: | |
| - main | |
| jobs: | |
| create_pr: | |
| name: Create charts PR | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout datagovuk_find repository | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: alphagov/datagovuk_find | |
| - name: Update integration SHA | |
| run: bash ./docker/create-pr.sh | |
| env: | |
| GH_TOKEN: ${{ secrets.PR_GITHUB_TOKEN }} | |
| GH_REF: ${{ github.ref_name }} | |
| IS_TAG: "false" | |
| ENVS: "integration" | |
| DIRECT_PUSH: "true" |