Skip to content

Commit 675a9c3

Browse files
committed
ci: change existing pipelines to only trigger manually
1 parent 9443b63 commit 675a9c3

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

.github/workflows/documentation.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
name: Generate documentation
22

33
on:
4-
push:
5-
branches: [ master ]
4+
workflow_dispatch: {}
5+
# push:
6+
# branches: [ master ]
67

78
jobs:
89
docs:

.github/workflows/grapheneos-update.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: "Update GrapheneOS"
22

3-
on: { schedule: [{ cron: '0 0 * * 0' }], workflow_dispatch }
3+
on:
4+
workflow_dispatch: {}
5+
# schedule: [{ cron: '0 0 * * 0' }]
46

57
jobs:
68
updates:

.github/workflows/instantiate.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@
33

44
name: "Basic Tests"
55
on:
6-
pull_request:
7-
push:
6+
workflow_dispatch: {}
7+
# pull_request:
8+
# push:
9+
810
jobs:
911
nix-instantiate:
1012
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)