This repository has been archived by the owner on Sep 21, 2023. It is now read-only.
SEC-090: Automated trusted workflow pinning (2023-09-20) #339
This file contains 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: Your Fork | |
on: | |
pull_request_target: | |
types: [opened] | |
jobs: | |
close: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Automatically close pull requests | |
if: ${{ github.repository.name }} == 'hashicorp/tfc-guide-example' | |
uses: superbrothers/close-pull-request@v3 # TSCCR: no entry for action: "superbrothers/close-pull-request" | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
# Optional. Post a issue comment just before closing a pull request. | |
comment: "Hi! If you are following the Terraform Cloud Get Started | |
tutorial, please open the PR against [your personal | |
fork](https://learn.hashicorp.com/tutorials/terraform/cloud-workspace-create?in=terraform/cloud-get-started#fork-a-github-repository) | |
of this repository. We will automatically close this PR, but if you | |
intended to edit the example itself, please add a comment and we will | |
review it as soon as possible." |