Skip to content

Commit 0e49bc2

Browse files
committed
modify automatic-updates for testing
1 parent 1752b46 commit 0e49bc2

File tree

1 file changed

+17
-16
lines changed

1 file changed

+17
-16
lines changed
Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
name: Automatically update Docker image versions
22

33
on:
4-
schedule:
5-
- cron: "*/15 * * * *"
4+
# schedule:
5+
# - cron: "*/15 * * * *"
6+
workflow_dispatch:
67

78
jobs:
89
build:
910
runs-on: ubuntu-latest
10-
if: github.repository_owner == 'nodejs'
11+
# if: github.repository_owner == 'nodejs'
1112
permissions:
1213
pull-requests: write
1314

@@ -23,16 +24,16 @@ jobs:
2324
const { default: script } = await import(`${process.env.GITHUB_WORKSPACE}/build-automation.mjs`);
2425
return script(github);
2526
26-
- name: Create update PR
27-
id: cpr
28-
uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0 # v8.1.0
29-
with:
30-
token: ${{ secrets.GH_API_TOKEN }}
31-
author: "Node.js GitHub Bot <nodejs-github-bot@users.noreply.github.com>"
32-
branch: update-branch
33-
base: main
34-
commit-message: "feat: Node.js ${{ steps.updt.outputs.result }}"
35-
title: "feat: Node.js ${{ steps.updt.outputs.result }}"
36-
delete-branch: true
37-
team-reviewers: |
38-
nodejs/docker
27+
# - name: Create update PR
28+
# id: cpr
29+
# uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0 # v8.1.0
30+
# with:
31+
# token: ${{ secrets.GH_API_TOKEN }}
32+
# author: "Node.js GitHub Bot <nodejs-github-bot@users.noreply.github.com>"
33+
# branch: update-branch
34+
# base: main
35+
# commit-message: "feat: Node.js ${{ steps.updt.outputs.result }}"
36+
# title: "feat: Node.js ${{ steps.updt.outputs.result }}"
37+
# delete-branch: true
38+
# team-reviewers: |
39+
# nodejs/docker

0 commit comments

Comments
 (0)