Skip to content

Commit

Permalink
fix: readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
mike doornenbal committed Feb 19, 2024
1 parent 6b2082e commit 818336b
Show file tree
Hide file tree
Showing 3 changed files with 213 additions and 170 deletions.
50 changes: 26 additions & 24 deletions .github/workflows/features.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,29 @@ on:
workflow_dispatch:

jobs:
readmeupdate:
runs-on: ubuntu-latest
timeout-minutes: 5
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Setup Dart
uses: dart-lang/setup-dart@v1
- name: Install dependencies
run: dart pub get --directory=scraper
- name: Update FEATURES.md
run: |
cd scraper
dart features.dart
- uses: stefanzweifel/git-auto-commit-action@v4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
commit_message: "feat: update FEATURES.md"
branch: master
commit_user_name: Github Actions Bot
commit_user_email: actions@github.com
commit_author: Author <actions@github.com>
readmeupdate:
runs-on: ubuntu-latest
timeout-minutes: 5
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Setup Dart
uses: dart-lang/setup-dart@v1
- name: Install dependencies
run: dart pub get --directory=scraper
- name: Update FEATURES.md
env:
DOC_PAT_UNLIMITED: ${{ secrets.DOC_PAT_UNLIMITED }}
run: |
cd scraper
dart features.dart
- uses: stefanzweifel/git-auto-commit-action@v4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
commit_message: "feat: update FEATURES.md"
branch: master
commit_user_name: Github Actions Bot
commit_user_email: actions@github.com
commit_author: Author <actions@github.com>
Loading

0 comments on commit 818336b

Please sign in to comment.