mirror of
https://github.com/systemd/systemd.git
synced 2025-01-10 05:18:17 +03:00
32981c454c
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.6 to 4.1.7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](a5ac7e51b4...692973e3d9
) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> (cherry picked from commit502fbea8c1
) (cherry picked from commit 01721bf2687d417a3620ce72b4598662ba7c7146)
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-24.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@692973e3d937129bcbf40652eb9f2f61becf3332
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Development Freezer
|
|
uses: redhat-plumbers-in-action/devel-freezer@ad766eafd555b28d2cb8e27937835983f9c3d173
|
|
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 }}
|