mirror of
https://github.com/systemd/systemd.git
synced 2024-12-25 01:34:28 +03:00
ec8c80eddb
The new version of `devel-freezer` GitHub Action adds support for milestones, labels, and more. Now, when the `rc` tag is published, it won't post a development freeze comment on PRs included in the next milestone. This commit also sets a delay of the 20s for PR validation to give some time for updating labels and milestones on submitted PRs.
44 lines
1.2 KiB
YAML
44 lines
1.2 KiB
YAML
# doc: https://github.com/redhat-plumbers-in-action/devel-freezer#readme
|
|
---
|
|
|
|
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' &&
|
|
github.repository == 'systemd/systemd'
|
|
runs-on: ubuntu-22.04
|
|
|
|
permissions:
|
|
pull-requests: write
|
|
|
|
steps:
|
|
- id: artifact
|
|
name: Download Pull Request Metadata artifact
|
|
uses: redhat-plumbers-in-action/download-artifact@463ae626ac2dd333491c7beccaa24c12c5c259b8
|
|
with:
|
|
name: Pull Request Metadata
|
|
|
|
- name: Repository checkout
|
|
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Development Freezer
|
|
uses: redhat-plumbers-in-action/devel-freezer@396c94ba8cb417474e6626c83a42addea210a403
|
|
with:
|
|
pr-number: ${{ fromJSON(steps.artifact.outputs.pr-metadata-json).number }}
|
|
# delay start of validation to allow for some milestone/labels tweaking
|
|
delay: 20
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|