Ease pre-pull request fork CI as well as github-actions based dispatch (#229)

2a21db5 · Paulo F. Oliveira · 2023-08-25 16:04

4 files +4 -28

Files changed

modified .github/workflows/action.yml
+1 −7
@@ -1,13 +1,7 @@
1 1 ---
2 2 name: action
3 3
4 on:
5 push:
6 branches:
7 - main
8 pull_request:
9 branches:
10 - main
4 +on: [push, workflow_dispatch]
11 5
12 6 env:
13 7 GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
modified .github/workflows/hexpm-mirrors.yml
+1 −7
@@ -1,13 +1,7 @@
1 1 ---
2 2 name: hexpm-mirrors
3 3
4 on:
5 push:
6 branches:
7 - main
8 pull_request:
9 branches:
10 - main
4 +on: [push, workflow_dispatch]
11 5
12 6 jobs:
13 7 test-failing-first-mirror:
modified .github/workflows/ubuntu.yml
+1 −7
@@ -1,13 +1,7 @@
1 1 ---
2 2 name: ubuntu
3 3
4 on:
5 push:
6 branches:
7 - main
8 pull_request:
9 branches:
10 - main
4 +on: [push, workflow_dispatch]
11 5
12 6 jobs:
13 7 integration_test:
modified .github/workflows/windows.yml
+1 −7
@@ -1,13 +1,7 @@
1 1 ---
2 2 name: windows
3 3
4 on:
5 push:
6 branches:
7 - main
8 pull_request:
9 branches:
10 - main
4 +on: [push, workflow_dispatch]
11 5
12 6 jobs:
13 7 integration_test:

Parents: f35f714