mirror of
https://github.com/systemd/systemd-stable.git
synced 2025-01-04 05:17:43 +03:00
29 lines
623 B
YAML
29 lines
623 B
YAML
|
# doc: https://github.com/redhat-plumbers-in-action/devel-freezer#readme
|
||
|
---
|
||
|
|
||
|
name: Development Freeze
|
||
|
on:
|
||
|
pull_request:
|
||
|
types: [ opened, reopened, synchronize ]
|
||
|
branches: [ main ]
|
||
|
|
||
|
permissions:
|
||
|
contents: read
|
||
|
|
||
|
jobs:
|
||
|
freezer:
|
||
|
runs-on: ubuntu-22.04
|
||
|
|
||
|
permissions:
|
||
|
pull-requests: write
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
|
||
|
with:
|
||
|
fetch-depth: 0
|
||
|
|
||
|
- name: Development Freezer
|
||
|
uses: redhat-plumbers-in-action/devel-freezer@1bce2d1d64db1a22f13cd6e4bff0b4f3847236c7
|
||
|
with:
|
||
|
token: ${{ secrets.GITHUB_TOKEN }}
|