-
-
Notifications
You must be signed in to change notification settings - Fork 0
29 lines (26 loc) · 1.18 KB
/
update-news-www.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
name: "Update news on owasp-juice.shop"
on:
release:
types: [ published ]
jobs:
UpdateNewsOnWebsite:
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f #v2: v2.3.4 available
with:
token: ${{ secrets.BOT_TOKEN }}
repository: OWASP/www-project-juice-shop
branch: master
- name: Update tab_news.md
run: |
sed -i 's/<!-- next:juice-shop -->/<!-- next:juice-shop -->\n* ${{ github.event.release.published_at }}: juice-shop [`${{ github.event.release.tag_name }}`](https:\/\/github.com\/juice-shop\/juice-shop\/releases\/tag\/${{ github.event.release.tag_name }})/' tab_news.md
- uses: stefanzweifel/git-auto-commit-action@v4.0.0
with:
commit_message: "Add juice-shop ${{ github.event.release.tag_name }} release notes to tab_news.md"
branch: master
commit_options: '--signoff'
# Optional commit user and author settings
commit_user_name: JuiceShopBot
commit_user_email: 61591748+JuiceShopBot@users.noreply.github.com
commit_author: JuiceShopBot <61591748+JuiceShopBot@users.noreply.github.com>