Autobump #216
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: Autobump | |
| on: | |
| schedule: | |
| - cron: '30 2 * * 1-5' | |
| workflow_dispatch: {} # allow manual trigger | |
| jobs: | |
| autobump-go: | |
| name: Go | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install GH CLI | |
| uses: dev-hanz-ops/[email protected] | |
| - name: Configure Git user | |
| run: | | |
| git config --global user.email "[email protected]" | |
| git config --global user.name "Serverless QE" | |
| - uses: actions/checkout@v4 | |
| - name: Autobump | |
| run: | |
| .github/workflows/autobump.sh | |
| --repo ${{ github.repository }} | |
| --branch autobump/go | |
| --dep github.com/openshift-knative/hack | |
| env: | |
| GH_TOKEN: ${{ secrets.SERVERLESS_QE_ROBOT }} |