[CHORE](deps)(deps): Bump marocchino/sticky-pull-request-comment from 2 to 3 #10
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| # 🦫 Standard Overture Maps Foundation PR checks. | |
| # | |
| # Bundles the following checks: | |
| # - PR Title: Validates PR titles against Overture's [TYPE] bracket format | |
| # - Check Issue: Enforces that PRs have a linked GitHub issue | |
| # | |
| # Designed to run as a GitHub Ruleset required workflow. | |
| # | |
| name: OMF PR Checks | |
| on: | |
| pull_request_target: | |
| types: [opened, reopened, edited, synchronize] | |
| # pull_request_target runs with write permissions so this workflow works for fork PRs. | |
| # SECURITY: This workflow must never check out or execute code from the PR branch. | |
| # If you need to add a step that does so, use the workflow_run pattern instead. | |
| permissions: | |
| contents: none | |
| issues: write | |
| pull-requests: write | |
| statuses: write | |
| jobs: | |
| validate-pr-title: | |
| name: title | |
| uses: OvertureMaps/workflows/.github/workflows/validate-pr-title.yml@main | |
| check-linked-issue: | |
| name: issue | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check for linked issue | |
| uses: OvertureMaps/workflows/.github/actions/check-linked-issue@main | |
| with: | |
| privateKey: ${{ secrets.CHECK_LINKED_ISSUE_APP_PEM }} |