Skip to content

Commit 285895a

Browse files
authored
repo sync
2 parents 0eda5c8 + 2a3c557 commit 285895a

3 files changed

Lines changed: 9 additions & 7 deletions

File tree

.github/CODEOWNERS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
*.js @github/docs-engineering
88
/.github/ @github/docs-engineering
99
/script/ @github/docs-engineering
10+
/includes/ @github/docs-engineering
11+
/layouts/ @github/docs-engineering
1012
app.json @github/docs-engineering
1113
Dockerfile @github/docs-engineering
1214
package-lock.json @github/docs-engineering

.github/allowed-actions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ module.exports = [
2121
"fkirc/skip-duplicate-actions@36feb0d8d062137530c2e00bd278d138fe191289",
2222
"github/codeql-action/analyze@v1",
2323
"github/codeql-action/init@v1",
24-
"ianwalter/puppeteer-container@2466ba8ecf689ccf4e5dfadeff3ac2db227b2e17",
2524
"juliangruber/approve-pull-request-action@c530832d4d346c597332e20e03605aa94fa150a8",
2625
"juliangruber/find-pull-request-action@2fc55e82a6d5d36fe1e7f1848f7e64fd02d99de9",
2726
"juliangruber/read-file-action@e0a316da496006ffd19142f0fd594a1783f3b512",
@@ -33,6 +32,7 @@ module.exports = [
3332
"peter-evans/create-pull-request@8c603dbb04b917a9fc2dd991dc54fef54b640b43",
3433
"rachmari/actions-add-new-issue-to-column@1a459ef92308ba7c9c9dc2fcdd72f232495574a9",
3534
"rachmari/labeler@832d42ec5523f3c6d46e8168de71cd54363e3e2e",
35+
"rachmari/puppeteer-container@6d56d6e132a3df76cf60bc290a4282f7fbaed05e",
3636
"repo-sync/github-sync@3832fe8e2be32372e1b3970bbae8e7079edeec88",
3737
"repo-sync/pull-request@33777245b1aace1a58c87a29c90321aa7a74bd7d",
3838
"someimportantcompany/github-actions-slack-message@0b470c14b39da4260ed9e3f9a4f1298a74ccdefd",

.github/workflows/browser-test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: Browser Tests
22

33
on:
44
workflow_dispatch:
5-
# push:
6-
# branches:
7-
# - main
8-
# pull_request:
5+
push:
6+
branches:
7+
- main
8+
pull_request:
99

1010
jobs:
1111
see_if_should_skip:
@@ -39,14 +39,14 @@ jobs:
3939

4040
- if: ${{ needs.see_if_should_skip.outputs.should_skip != 'true' }}
4141
name: Install
42-
uses: ianwalter/puppeteer-container@2466ba8ecf689ccf4e5dfadeff3ac2db227b2e17
42+
uses: rachmari/puppeteer-container@6d56d6e132a3df76cf60bc290a4282f7fbaed05e
4343
timeout-minutes: 5
4444
with:
4545
args: npm ci
4646

4747
- if: ${{ needs.see_if_should_skip.outputs.should_skip != 'true' }}
4848
name: Test
4949
timeout-minutes: 10
50-
uses: ianwalter/puppeteer-container@2466ba8ecf689ccf4e5dfadeff3ac2db227b2e17
50+
uses: rachmari/puppeteer-container@6d56d6e132a3df76cf60bc290a4282f7fbaed05e
5151
with:
5252
args: npm run browser-test

0 commit comments

Comments
 (0)