Create charts PR #47
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 images" ] | |
types: | |
- completed | |
branches: | |
- main | |
jobs: | |
create_pr: | |
name: Create charts PR | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout datagovuk_publish repository | |
uses: actions/checkout@v4 | |
with: | |
repository: alphagov/datagovuk_publish | |
- 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" |