We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bae5fdb commit b8033c2Copy full SHA for b8033c2
.github/workflows/check_new_changelog.yml
@@ -0,0 +1,18 @@
1
+name: Check new CHANGELOGs
2
+
3
+on:
4
+ pull_request:
5
+ types: [opened, synchronize, reopened]
6
7
+permissions:
8
+ contents: read
9
10
+jobs:
11
+ check_new_changelog:
12
+ runs-on: ubuntu-20.04
13
+ steps:
14
+ - name: checkout
15
+ uses: actions/checkout@v4
16
17
+ - name: check new CHANGELOG
18
+ uses: ./.github/actions/check_new_changelog
.github/workflows/ci.yml
@@ -16,15 +16,6 @@ env:
MSRV: 1.69.0
jobs:
19
- check_new_changelog:
20
- runs-on: ubuntu-20.04
21
- steps:
22
- - name: checkout
23
- uses: actions/checkout@v4
24
-
25
- - name: check new CHANGELOG
26
- uses: ./.github/actions/check_new_changelog
27
28
macos:
29
runs-on: macos-13
30
env:
0 commit comments