Skip to content

fix sc.author.line not existing #47

fix sc.author.line not existing

fix sc.author.line not existing #47

Workflow file for this run

name: Webmentions
on:
push:
branches:
- main
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
with:
node-version: 18.x
- name: Fetch webmentions
env:
WEBMENTION_API_KEY: ${{ secrets.WEBMENTION_API_KEY }}
run: node ./src/lib/indie/webmentions.js
- name: Commit to repository
env:
GITHUB_TOKEN: ${{ secrets.TOKEN_GITHUB }}
COMMIT_MSG: |
add webmentions
skip-checks: true
run: |
git config user.email "[email protected]"
git config user.name "Laker Turner (bot)"
git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/lxjv/challenger.git
git checkout main
git add .
git diff --quiet && git diff --staged --quiet || (git commit -m "${COMMIT_MSG}"; git push origin main)