Skip to content

Commit 6492b32

Browse files
committed
REVERTME: dry-run some workflows
1 parent f67d9ac commit 6492b32

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

.github/workflows/documentation.yml

+3-5
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,8 @@ on:
88
- 'resources/**'
99
- 'tools/**'
1010
pull_request:
11-
paths:
12-
- 'docs/**'
13-
- 'resources/**'
14-
- 'tools/**'
11+
branches:
12+
- ubuntu-24.04
1513
jobs:
1614
build-and-publish:
1715
runs-on: ubuntu-24.04
@@ -34,4 +32,4 @@ jobs:
3432
- name: Run website_build.sh
3533
run: ./tools/ci/website_build.sh
3634
env:
37-
DEPLOY_TOKEN: ${{ secrets.DEPLOY_TOKEN }}
35+
DEPLOY_TOKEN: dummy

.github/workflows/epochs.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ on:
44
# Trigger 10 minutes past every 3rd hour. 10 minutes is a safety margin
55
# for any manifest workflow to finish, see tools/wpt/revlist.py.
66
- cron: 10 */3 * * *
7+
pull_request:
8+
branches:
9+
- ubuntu-24.04
710
jobs:
811
update:
912
runs-on: ubuntu-24.04
@@ -16,7 +19,7 @@ jobs:
1619
- name: Run epochs_update.sh
1720
run: ./tools/ci/epochs_update.sh
1821
env:
19-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
22+
GITHUB_TOKEN: dummy
2023
- name: Upload git-push output
2124
uses: actions/upload-artifact@v4
2225
with:

.github/workflows/manifest.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ on:
44
branches:
55
- master
66
pull_request:
7-
paths:
8-
- 'tools/**'
7+
branches:
8+
- ubuntu-24.04
99
jobs:
1010
build-and-tag:
1111
runs-on: ubuntu-24.04
@@ -26,4 +26,4 @@ jobs:
2626
- name: Run manifest_build.py
2727
run: tools/docker/retry.py --delay 60 python tools/ci/manifest_build.py
2828
env:
29-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
29+
GITHUB_TOKEN: dummy

0 commit comments

Comments
 (0)