-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (31 loc) · 1.13 KB
/
webmentions.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Webmentions
on:
schedule:
- cron: "0 0 */7 * *" # Run every 7 days at midnight UTC
# Allows you to run this workflow manually from the Actions tab on GitHub.
workflow_dispatch:
jobs:
webmentions:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@master
- name: Set up Node.js
uses: actions/setup-node@master
- name: Fetch webmentions
env:
WEBMENTION_API_KEY: ${{ secrets.WEBMENTION_API_KEY }}
run: node ./src/utils/webmentions.js
- name: Commit to repository
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COMMIT_MSG: |
chore: fetch webmentions
skip-checks: true
run: |
git config user.email "${{ secrets.YOUR_EMAIL }}"
git config user.name "Alexandre Mouriec"
git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/mrcalexandre/alexandremouriec.com.git
git checkout main
git add .
git diff --quiet && git diff --staged --quiet || (git commit -m "${COMMIT_MSG}"; git push origin main)