forked from yewstack/yew
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (32 loc) · 1.06 KB
/
inspect-next-changelogs.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
39
40
name: Inspect next changelogs
permissions:
contents: write
on:
workflow_dispatch:
jobs:
generate:
name: Generate changelogs
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
profile: minimal
- name: Build changelog generator
run: cargo build --release -p changelog
working-directory: tools
- name: Read yew changelog in this step
run: ./target/release/changelog yew minor -t ${{ secrets.GITHUB_TOKEN }}
working-directory: tools
- name: Read yew-router changelog in this step
run: ./target/release/changelog yew-router minor -t ${{ secrets.GITHUB_TOKEN }}
working-directory: tools
- name: Read yew-agent changelog in this step
run: ./target/release/changelog yew-agent minor -t ${{ secrets.GITHUB_TOKEN }}
working-directory: tools