itHub Actions Read Pull Request #7
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: "GitHub Actions Read Pull Request" | |
| run-name: "itHub Actions Read Pull Request" | |
| on: | |
| pull_request: | |
| types: [opened] | |
| jobs: | |
| readPush: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| steps: | |
| - name: Check out pullrequest | |
| uses: actions/checkout@v4 | |
| env: | |
| token: ${{ secrets.GITHUB_TOKEN }} |