Create charts PR #66
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: 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: Create PR | |
run: bash ./docker/create-pr.sh | |
env: | |
GH_TOKEN: ${{ secrets.PR_GITHUB_TOKEN }} | |
GH_REF: ${{ github.ref_name }} | |
IS_TAG: "false" | |
ENVS: "integration" |