mirror of
https://github.com/Mibew/simple-icons.git
synced 2024-11-16 02:14:12 +03:00
d96126dca3
* Update workflow names Most importantly gives unique names to `create-release.yml` and `merge-release.yml`. Other than that, this attempts to improve and unify the names of all workflows. * Update release workflow names Co-authored-by: Álvaro Mondéjar <mondejar1994@gmail.com> Co-authored-by: Álvaro Mondéjar <mondejar1994@gmail.com>
14 lines
322 B
YAML
14 lines
322 B
YAML
name: Merge Release Pull Request
|
|
on:
|
|
pull_request_review:
|
|
types: [submitted]
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
if: contains(github.event.pull_request.labels.*.name, 'release')
|
|
steps:
|
|
- uses: simple-icons/release-action@master
|
|
with:
|
|
repo-token: ${{ secrets.RELEASE_TOKEN }}
|