mirror of
https://github.com/Mibew/simple-icons.git
synced 2024-11-18 03:14:11 +03:00
92d2a3e678
* Split release workflow into two Split the release workflow - which so far created and helped merging release PRs - into a workflow for reating the release PR and one for helping to merge it. * Simplify merge-release.yml if-condition
14 lines
287 B
YAML
14 lines
287 B
YAML
name: Automated releases
|
|
on:
|
|
schedule:
|
|
# "At 00:00 on Sunday" (https://crontab.guru/once-a-week)
|
|
- cron: "0 0 * * 0"
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: simple-icons/release-action@master
|
|
with:
|
|
repo-token: ${{ secrets.NPM_TOKEN }}
|