1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- name: bump sentry in getsentry
- concurrency:
- group: ${{ github.workflow }}
- on:
- push:
- branches:
- - master
- defaults:
- run:
-
-
- shell: bash --noprofile --norc -eo pipefail -ux {0}
- jobs:
- bump-sentry:
- runs-on: ubuntu-22.04
- steps:
- - name: checkout
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- with:
-
- path: sentry
- - name: checkout getsentry
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- with:
- repository: 'getsentry/getsentry'
- path: getsentry
-
-
- token: ${{ secrets.BUMP_SENTRY_TOKEN }}
- - name: bump-sentry ${{ github.sha }}
- run: |
- cd getsentry
- python -S -m bin.bump_sentry ${{ github.sha }}
-
-
- for i in 1 2 3 4 5; do
- git push origin master && exit 0
-
-
- git \
- -c user.name=getsentry-bot \
- -c user.email=bot@sentry.io \
- pull --rebase origin master
- done
-
- git push origin master
|