Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 672 Bytes

README.md

File metadata and controls

28 lines (20 loc) · 672 Bytes

pr-trigger

Create a standardised pr-trigger repository dispatch event

Why

Dependabot creates PRs. I have secrets. I don't put secrets into dependabot's context even though I should.

If that means nothing to you, then you don't need this action.

Usage

  • Requires you to have contents:write & pull_requests:read permissions attached to the token (depending on what you're doing).
  • This uses the repo-dispatch action (so check its dependencies).
jobs:
  dispatch:
    permissions:
      contents: write
      pull-requests: read
    runs-on: ubuntu-latest
    name: PR Trigger
    steps:
      - name: dispatch
        uses: ./pr-trigger