Advance RFC #0785 "Introduce new test helpers for rendering (and re-rendering) that obviate the need for get and set"
to Stage Recommended
#105
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: Label newly opened RFC PRs | |
on: | |
pull_request_target: # This workflow has permissions on the repo, do NOT run code from PRs in this workflow. See https://securitylab.github.com/research/github-actions-preventing-pwn-requests/ | |
types: [opened] | |
paths: | |
- 'text/*.md' | |
jobs: | |
label-pr: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
fetch-depth: 0 | |
persist-credentials: false | |
- name: RFCs Added or Changed | |
id: rfcs | |
uses: ./.github/actions/find-added-or-modified-rfcs | |
- uses: actions-ecosystem/action-add-labels@v1 | |
if: steps.rfcs.outputs.added-rfcs-count > 0 | |
with: | |
labels: S-Proposed |