mirror of
https://github.com/getsentry/self-hosted.git
synced 2026-02-01 16:32:44 +00:00
parent
b814ec7d92
commit
2bf9af3a72
40
.github/workflows/fast-revert.yml
vendored
Normal file
40
.github/workflows/fast-revert.yml
vendored
Normal file
@ -0,0 +1,40 @@
|
||||
on:
|
||||
pull_request_target:
|
||||
types: [labeled]
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
pr:
|
||||
required: true
|
||||
description: pr number
|
||||
co_authored_by:
|
||||
required: true
|
||||
description: '`name <email>` for triggering user'
|
||||
|
||||
# disable all permissions -- we use the PAT's permissions instead
|
||||
permissions: {}
|
||||
|
||||
jobs:
|
||||
revert:
|
||||
runs-on: ubuntu-latest
|
||||
if: |
|
||||
github.event_name == 'workflow_dispatch' || github.event.label.name == 'Trigger: Revert'
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
token: ${{ secrets.BUMP_SENTRY_TOKEN }}
|
||||
- uses: getsentry/action-fast-revert@v2.0.1
|
||||
with:
|
||||
pr: ${{ github.event.number || github.event.inputs.pr }}
|
||||
co_authored_by: ${{ github.event.inputs.co_authored_by || format('{0} <{1}+{0}@users.noreply.github.com>', github.event.sender.login, github.event.sender.id) }}
|
||||
committer_name: getsentry-bot
|
||||
committer_email: bot@sentry.io
|
||||
token: ${{ secrets.BUMP_SENTRY_TOKEN }}
|
||||
- name: comment on failure
|
||||
run: |
|
||||
curl \
|
||||
--silent \
|
||||
-X POST \
|
||||
-H 'Authorization: token ${{ secrets.BUMP_SENTRY_TOKEN }}' \
|
||||
-d'{"body": "revert failed (conflict? already reverted?) -- [check the logs](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})"}' \
|
||||
https://api.github.com/repositories/${{ github.event.repository.id }}/issues/${{ github.event.number || github.event.inputs.pr }}/comments
|
||||
if: failure()
|
||||
Loading…
x
Reference in New Issue
Block a user