1234567891011121314151617181920212223242526272829303132 |
- name: dispatch getsentry bump-sentry
- # Serializes the execution of this workflow.
- concurrency:
- group: ${{ github.workflow }}
- on:
- push:
- branches:
- - master
- jobs:
- dispatch:
- name: dispatch
- runs-on: ubuntu-20.04
- steps:
- - name: Dispatch getsentry tests
- uses: actions/github-script@7a5c598405937d486b0331594b5da2b14db670da # v6
- with:
- # This Personal Access Token belongs to getsentry-bot,
- # who can write to getsentry and is SAML+SSO ready.
- github-token: ${{ secrets.BUMP_SENTRY_TOKEN }}
- script: |
- await github.rest.actions.createWorkflowDispatch({
- owner: 'getsentry',
- repo: 'getsentry',
- workflow_id: 'bump-sentry.yml',
- ref: 'master',
- inputs: {
- "sentry_sha": "${{ github.sha }}"
- }
- })
|