Skip to content

Commit

Permalink
Add GitHub action to check for Semantic Version label (#132)
Browse files Browse the repository at this point in the history
  • Loading branch information
FranzBusch authored Nov 28, 2024
1 parent 5e119a3 commit 7177b0c
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/pull_request_label.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: PR label

on:
pull_request:
types: [labeled, unlabeled, opened, reopened, synchronize]

jobs:
semver-label-check:
name: Semantic version label check
runs-on: ubuntu-latest
timeout-minutes: 1
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Check for Semantic Version label
uses: apple/swift-nio/.github/actions/pull_request_semver_label_checker@main

0 comments on commit 7177b0c

Please sign in to comment.