Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/geekeast/trigger-open-pr-workflow
Workflow to re-trigger workflow of all open PRs when base updates
https://github.com/geekeast/trigger-open-pr-workflow
workflow-dispatch
Last synced: about 1 month ago
JSON representation
Workflow to re-trigger workflow of all open PRs when base updates
- Host: GitHub
- URL: https://github.com/geekeast/trigger-open-pr-workflow
- Owner: GeekEast
- Created: 2022-03-09T06:18:59.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-03-09T08:00:50.000Z (almost 3 years ago)
- Last Synced: 2024-10-31T10:39:00.774Z (about 2 months ago)
- Topics: workflow-dispatch
- Language: TypeScript
- Homepage:
- Size: 324 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# trigger-open-pr-workflow
## Inputs
- token: the user's access token
- workflow_filename: the workflow file name```yml
name: Dispatch Merge Eventon:
pull_request:
branches:
- main
types: [closed]jobs:
publish-merge-event:
if: ${{ github.event.pull_request.merged }}
runs-on: ubuntu-latest
steps:
- name: Trigger Open PRs workflow
uses: GeekEast/[email protected]
with:
token: ${{ secrets.ACCESS_TOKEN }} # genereate a personal token, don't use the default secrets.GTIHUB_TOKEN
workflow_filename: 'pipeline.yml'
```## Sample Project
- [worfklow-trigger-me](https://github.com/GeekEast/workflow-trigger-me)