We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4ac3e2 commit 6642cb1Copy full SHA for 6642cb1
2 files changed
.github/PRIVATE_ISSUE_TEMPLATE/update-year.md
@@ -0,0 +1,9 @@
1
+---
2
+title: update year in documentation
3
+labels: docs
4
5
+Update the year in the documentation to {{ date | YYYY }}.
6
+
7
+- [ ] license
8
+- [ ] general readme
9
+- [ ] developer readme
.github/workflows/year.yml
@@ -0,0 +1,16 @@
+name: year
+on:
+ schedule:
+ - cron: '0 0 1 1 *' # run yearly on Jan 1
+jobs:
+ open-issue:
+ steps:
10
11
+ - name: create issue
12
+ uses: JasonEtco/create-an-issue@v2
13
+ env:
14
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
15
+ with:
16
+ filename: .github/PRIVATE_ISSUE_TEMPLATE/update-year.md
0 commit comments