Skip to content

Commit

Permalink
Testing out a github action to count incident actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jimleroyer committed Dec 7, 2023
1 parent 9428567 commit 40d68bb
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/count-incident-actions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Count Issues

on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
count_issues:
runs-on: ubuntu-latest

steps:
- name: Count Incident Action issues
uses: kazupon/issue-count-action
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
labels: 'Incident Action'
state: open

0 comments on commit 40d68bb

Please sign in to comment.