Skip to content

Commit 2387a33

Browse files
authored
Create engagement-scores.yml
This is an action to calculate the engagement score and update a project column.
1 parent 16e61a1 commit 2387a33

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Apply Engagement Scores to Project
2+
3+
on:
4+
workflow_dispatch: # manually triggered
5+
schedule:
6+
- cron: '0 */6 * * *' # every 6 hours
7+
8+
jobs:
9+
test-workflow:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: mattleibow/dev-tools@action/engagement
13+
with:
14+
project: 1
15+
column: 'Engagement Score'
16+
project-token: ${{ secrets.PROJECT_ACCESS_TOKEN }}

0 commit comments

Comments
 (0)