add user bypass actor org ruleset #489
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
| name: Issue/PR Response | |
| on: | |
| issues: | |
| types: | |
| - opened | |
| pull_request_target: | |
| types: | |
| - opened | |
| permissions: read-all | |
| jobs: | |
| # ────────────────────────────────────────────── | |
| # PR Response | |
| # ────────────────────────────────────────────── | |
| respond-to-pr: | |
| name: Respond to PR | |
| if: > | |
| github.event_name == 'pull_request_target' && | |
| github.actor != 'dependabot[bot]' && | |
| github.actor != 'renovate[bot]' && | |
| github.actor != 'github-actions[bot]' && | |
| github.actor != 'octokitbot' && | |
| github.repository == 'integrations/terraform-provider-github' | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: write | |
| steps: | |
| - name: Comment on PR | |
| uses: peter-evans/create-or-update-comment@e8674b075228eee787fea43ef493e45ece1004c9 # v5.0.0 | |
| with: | |
| issue-number: ${{ github.event.pull_request.number }} | |
| body: | | |
| 👋 Hi, and thank you for this contribution! | |
| This repo is maintained by GitHub and community members on a best-effort basis. We'll get to this as soon as we can. | |
| You can help us prioritize by joining the discussion on open issues and PRs, sharing details on the changes you need, and reviewing other contributions. | |
| --- | |
| <sub>🤖 This is an automated message.</sub> | |
| # ────────────────────────────────────────────── | |
| # Issue Response | |
| # ────────────────────────────────────────────── | |
| respond-to-issue: | |
| name: Respond to Issue | |
| if: > | |
| github.event_name == 'issues' && | |
| github.actor != 'dependabot[bot]' && | |
| github.actor != 'renovate[bot]' && | |
| github.actor != 'github-actions[bot]' && | |
| github.actor != 'octokitbot' && | |
| github.repository == 'integrations/terraform-provider-github' | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| steps: | |
| - name: Comment on issue | |
| uses: peter-evans/create-or-update-comment@e8674b075228eee787fea43ef493e45ece1004c9 # v5.0.0 | |
| with: | |
| issue-number: ${{ github.event.issue.number }} | |
| body: | | |
| 👋 Hi, and thank you for opening this issue! | |
| This repo is maintained by GitHub and community members on a best-effort basis. We'll get to this as soon as we can. | |
| You can help us prioritize by adding details, reproduction steps, or a 👍 to issues that matter to you, and by joining the discussion on open issues and PRs. | |
| --- | |
| <sub>🤖 This is an automated message.</sub> |