Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichaƫl Zasso <targos@protonmail.com>2020-12-14 10:25:15 +0300
committerRich Trott <rtrott@gmail.com>2020-12-18 23:38:18 +0300
commitdaa132260d19a5a8f46253259101a586dcba6fc4 (patch)
treeae3668d7d37e2c3b75c31e1c17b1fcc411dd8f27 /.github
parent565663e0468ccabeb589bc8a01ea3cc499e692e7 (diff)
build: run some workflows only on nodejs/node
This updates the close-stalled, comment-stalled and license-builder workflows to skip them on repositories that are not nodejs/node. PR-URL: https://github.com/nodejs/node/pull/36507 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/close-stalled.yml1
-rw-r--r--.github/workflows/comment-stalled.yml1
-rw-r--r--.github/workflows/license-builder.yml3
3 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/close-stalled.yml b/.github/workflows/close-stalled.yml
index 1834d3ac2e6..916baf0463f 100644
--- a/.github/workflows/close-stalled.yml
+++ b/.github/workflows/close-stalled.yml
@@ -5,6 +5,7 @@ on:
jobs:
stale:
+ if: github.repository == 'nodejs/node'
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
diff --git a/.github/workflows/comment-stalled.yml b/.github/workflows/comment-stalled.yml
index 62bd26f39eb..1c21505c4ad 100644
--- a/.github/workflows/comment-stalled.yml
+++ b/.github/workflows/comment-stalled.yml
@@ -7,6 +7,7 @@ on:
jobs:
staleComment:
+ if: github.repository == 'nodejs/node'
runs-on: ubuntu-latest
steps:
- name: Post comment
diff --git a/.github/workflows/license-builder.yml b/.github/workflows/license-builder.yml
index 714aeb1c149..115bef9977d 100644
--- a/.github/workflows/license-builder.yml
+++ b/.github/workflows/license-builder.yml
@@ -7,7 +7,8 @@ on:
workflow_dispatch:
jobs:
- update_routes:
+ update_license:
+ if: github.repository == 'nodejs/node'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2