8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed117aa commit 358a00bCopy full SHA for 358a00b
.github/workflows/mark_file.yml
@@ -0,0 +1,28 @@
1
+name: mark_file
2
+
3
+on:
4
+ schedule:
5
+ - cron: '30 23 * * 5'
6
7
+jobs:
8
+ ci:
9
+ runs-on: ubuntu-latest
10
+ permissions:
11
+ # Give the default GITHUB_TOKEN write permission to commit and push the
12
+ # added or changed files to the repository.
13
+ contents: write
14
+ steps:
15
+ - uses: actions/checkout@v2
16
17
+ - name: Install poetry
18
+ uses: abatilo/actions-poetry@v2
19
20
+ - name: Execute Check Process
21
+ run: |
22
+ chmod +x .scripts/mark_file.sh
23
+ .scripts/mark_file.sh
24
+ shell: bash
25
26
+ - uses: stefanzweifel/git-auto-commit-action@v5
27
+ with:
28
+ commit_message: Weekly Update -- Marking files
0 commit comments