Development Freeze #318
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: Development Freeze | |
on: | |
workflow_run: | |
workflows: [ Gather Pull Request Metadata ] | |
types: | |
- completed | |
permissions: | |
contents: read | |
jobs: | |
freezer: | |
if: > | |
github.event.workflow_run.event == 'pull_request' && | |
github.event.workflow_run.conclusion == 'success' | |
runs-on: ubuntu-latest | |
permissions: | |
# Needed for commenting on Pull Requests | |
pull-requests: write | |
steps: | |
- id: Artifact | |
name: Download Pull Request Metadata artifact | |
uses: redhat-plumbers-in-action/download-artifact@v1 | |
with: | |
name: Pull Request Metadata | |
- name: Repository checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Development Freezer | |
uses: redhat-plumbers-in-action/devel-freezer@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Development Freezer | |
uses: ./ | |
with: | |
pr-number: ${{ fromJSON(steps.Artifact.outputs.pr-metadata-json).number }} | |
token: ${{ secrets.GITHUB_TOKEN }} |