-
Notifications
You must be signed in to change notification settings - Fork 1
38 lines (34 loc) · 996 Bytes
/
badges.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
37
38
name: badges
on:
push:
# update README badge only if the README file changes
# or if the package.json file changes, or this file changes
branches:
- main
paths:
- README.md
- package.json
- .github/workflows/badges.yml
schedule:
# update badges every night
# because we have a few badges that are linked
# to the external repositories
- cron: '0 3 * * *'
workflow_dispatch:
jobs:
badges:
name: Badges
runs-on: ubuntu-22.04
steps:
- name: Checkout 🛎
uses: actions/checkout@v4
- name: Update version badges 🏷
run: npx -p dependency-version-badge update-badge cypress cypress-data-session cy-spok @bahmutov/cy-api
- name: Commit any changed files 💾
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Updated badges
branch: main
file_pattern: README.md
push_options: '--force'
skip_fetch: true