Skip to content

Commit 9f43c59

Browse files
authored
Add automation or script to update Remaining days to 0 whenever an issue is closed (#15025)
1 parent 613e85b commit 9f43c59

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Auto-Set Remaining Days to 0 on Issue Closed
2+
3+
on:
4+
issues:
5+
types: [closed]
6+
7+
jobs:
8+
update_remaining_days:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Set Remaining Days to 0 in Project 183
12+
uses: nipe0324/[email protected]
13+
with:
14+
project-url: https://github.com/orgs/microsoft/projects/183
15+
github-token: ${{ secrets.UPDATE_PROJECT_V2_PAT }}
16+
field-name: "Remaining Days"
17+
field-value: "0"

0 commit comments

Comments
 (0)