123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- name: bump sentry in getsentry
- # Serializes the execution of this workflow.
- concurrency:
- group: ${{ github.workflow }}
- on:
- push:
- branches:
- - master
- jobs:
- bump-sentry:
- runs-on: ubuntu-20.04
- steps:
- - name: checkout
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0
- with:
- # For getsentry/bin/bump-sentry, sentry needs to be at ../sentry relative to getsentry.
- path: sentry
- - name: checkout getsentry
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0
- with:
- repository: 'getsentry/getsentry'
- path: getsentry
- # This PAT (Personal Access Token) belongs to getsentry-bot,
- # who can write to getsentry and is SAML+SSO ready.
- token: ${{ secrets.BUMP_SENTRY_TOKEN }}
- - name: install dependencies
- shell: bash
- run: |
- cd getsentry
- python -m pip install -q "$(grep '^pip-tools==' requirements-dev-frozen.txt)"
- - name: bump-sentry ${{ github.sha }}
- shell: bash
- run: |
- cd getsentry
- python -S -m bin.bump_sentry ${{ github.sha }}
- # If getsentry is pushed to by any other means while we were here,
- # we won't be able to push.
- for i in 1 2 3 4 5; do
- git push origin master && exit 0
- # There's a little bit of network delay here that suffices
- # as a small sleep.
- git pull --rebase origin master
- done
- # 5th and final attempt.
- git push origin master
|