add staging to readme #104
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: Automatic PRs | |
on: | |
push: | |
branches: | |
- v3-dev | |
jobs: | |
pull-requests: | |
name: Automatic PRs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v3 | |
- name: pull-request-v3-k8s | |
uses: repo-sync/pull-request@v2 | |
with: | |
destination_branch: "v3-k8s" | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
pr_title: "Pulling ${{ github.ref }} into v3-k8s" | |
- name: pull-request-v3-k8s-staging | |
uses: repo-sync/pull-request@v2 | |
with: | |
destination_branch: "v3-k8s-staging" | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
pr_title: "Pulling ${{ github.ref }} into v3-k8s-staging" |