2022-09-19 19:07:13 +02:00
|
|
|
name: Update playlist
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2022-09-19 19:17:37 +02:00
|
|
|
branches: [ master ]
|
2022-09-19 19:07:13 +02:00
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
update-plalist:
|
2022-09-29 11:52:15 +02:00
|
|
|
runs-on: ubuntu-latest
|
2022-09-19 19:07:13 +02:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Update playlist
|
|
|
|
run: |
|
|
|
|
git config user.name "PlaylistBot"
|
|
|
|
git config user.email "playlistbot@users.noreply.github.com"
|
|
|
|
git add .
|
|
|
|
git commit --quiet -m "Update Playlist (GitHub Actions)"
|
|
|
|
git push -f origin automate-1
|