Commit 1d11535 1 parent 5522cd1 commit 1d11535 Copy full SHA for 1d11535
File tree 3 files changed +28
-3
lines changed
3 files changed +28
-3
lines changed Original file line number Diff line number Diff line change 1
1
name : compatibility-tests
2
2
3
3
on :
4
- push :
5
- tags :
6
- - ' *'
7
4
workflow_dispatch :
5
+ repository_dispatch :
6
+ types : [compatibility-tests]
8
7
9
8
jobs :
10
9
test-compatibility :
56
55
PREVIOUS_VERSION="0.5.30"
57
56
fi
58
57
58
+ echo "Current version is $NEW_VERSION"
59
+ echo "Will be tested for compatibility from $PREVIOUS_VERSION"
60
+
59
61
echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_ENV
60
62
echo "PREVIOUS_VERSION=$PREVIOUS_VERSION" >> $GITHUB_ENV
61
63
Original file line number Diff line number Diff line change
1
+ name : tmp
2
+
3
+ on :
4
+ workflow_dispatch :
5
+
6
+ permissions :
7
+ contents : write
8
+
9
+ jobs :
10
+ tag-and-release :
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ - uses : actions/checkout@v4
14
+
15
+ - name : dispatch-compatibility-tests
16
+ uses : peter-evans/repository-dispatch@v3
17
+ with :
18
+ event-type : compatibility-tests
Original file line number Diff line number Diff line change @@ -131,3 +131,8 @@ jobs:
131
131
tag_name : ${{ env.VERSION }}
132
132
env :
133
133
GITHUB_TOKEN : ${{ github.token }}
134
+
135
+ - name : dispatch-compatibility-tests
136
+ uses : peter-evans/repository-dispatch@v3
137
+ with :
138
+ event-type : compatibility-tests
You can’t perform that action at this time.
0 commit comments