Skip to content

Docs: add security policy #5761

Docs: add security policy

Docs: add security policy #5761

Workflow file for this run

name: GitHub Label Sync
on:
pull_request:
push:
branches:
- 'main'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
dry-run:
if: github.event_name == 'pull_request'
permissions:
contents: read # actions/checkout
issues: read # EndBug/label-sync
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- uses: EndBug/label-sync@52074158190acb45f3077f9099fea818aa43f97a # v2.3.3
with:
config-file: .github/labels.yml
delete-other-labels: true
dry-run: true
token: ${{ secrets.GITHUB_TOKEN }}
# !!! This check should be required by GitHub !!!
labels-status-check:
needs:
- dry-run
if: always()
permissions: {}
runs-on: ubuntu-latest
steps:
- uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # release/v1
with:
jobs: ${{ toJSON(needs) }}
allowed-skips: dry-run
sync:
if: github.event_name == 'push'
permissions:
contents: read # actions/checkout
issues: write # EndBug/label-sync
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- uses: EndBug/label-sync@52074158190acb45f3077f9099fea818aa43f97a # v2.3.3
with:
config-file: .github/labels.yml
delete-other-labels: true
token: ${{ secrets.GITHUB_TOKEN }}