From 22610825361ad1cccf031335693b1de5509d75cf Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Wed, 19 Apr 2023 09:35:01 -0700 Subject: [PATCH 001/144] Update datadog.yml --- .github/workflows/datadog.yml | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/.github/workflows/datadog.yml b/.github/workflows/datadog.yml index 875f647..72e9e76 100644 --- a/.github/workflows/datadog.yml +++ b/.github/workflows/datadog.yml @@ -17,14 +17,21 @@ jobs: GITHUB_CONTEXT: ${{ toJSON(github) }} run: echo "$GITHUB_CONTEXT" - - name: Check if the pull was closed - if: github.event.workflow_run.event == 'pull_request' && join(github.event.workflow_run.pull_requests) == '' - run: echo "skip=true" >> $GITHUB_ENV + if: github.event.workflow_run.event == 'pull_request' + run: | + if [ -z "$PULLS_REQUESTS" ] + then + echo "skip=true" >> $GITHUB_ENV + else + echo "skip=false" >> $GITHUB_ENV + fi + env: + PULLS_REQUESTS: join(github.event.workflow_run.pull_requests) - name: Get Pull Info uses: octokit/request-action@v2.x - if: github.event.workflow_run.event == 'pull_request' && env.skip != 'true' + if: github.event.workflow_run.event == 'pull_request' && env.skip == 'false' id: get_action_job_data with: route: GET /repos/${{ github.repository }}/pulls/${{github.event.workflow_run.pull_requests[0].number}} @@ -33,7 +40,7 @@ jobs: - name: Skip sending metrics on draft pulls or the testing label id: skip-check - if: github.event.workflow_run.event == 'pull_request' && env.skip != 'true' + if: github.event.workflow_run.event == 'pull_request' && env.skip == 'false' run: | TESTING_LABEL=$(echo $job_data_json | jq '.labels | .[]? | select(.name == "${{ env.skip-label }}")') DRAFT_STATUS=$(echo $job_data_json | jq '.draft') From cad71b3e097e86db5064d60ba38206f8c441a9b0 Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Wed, 19 Apr 2023 09:41:47 -0700 Subject: [PATCH 002/144] Update datadog.yml --- .github/workflows/datadog.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/datadog.yml b/.github/workflows/datadog.yml index 72e9e76..6bf0498 100644 --- a/.github/workflows/datadog.yml +++ b/.github/workflows/datadog.yml @@ -20,14 +20,15 @@ jobs: - name: Check if the pull was closed if: github.event.workflow_run.event == 'pull_request' run: | - if [ -z "$PULLS_REQUESTS" ] + echo "$PULL_REQUESTS" + if [ -z "$PULL_REQUESTS" ] then echo "skip=true" >> $GITHUB_ENV else echo "skip=false" >> $GITHUB_ENV fi env: - PULLS_REQUESTS: join(github.event.workflow_run.pull_requests) + PULL_REQUESTS: join(github.event.workflow_run.pull_requests) - name: Get Pull Info uses: octokit/request-action@v2.x From 2b8e7a41e996703f41a3c6488beca82752cb2983 Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Wed, 19 Apr 2023 09:44:58 -0700 Subject: [PATCH 003/144] Update datadog.yml --- .github/workflows/datadog.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/datadog.yml b/.github/workflows/datadog.yml index 6bf0498..03edebd 100644 --- a/.github/workflows/datadog.yml +++ b/.github/workflows/datadog.yml @@ -28,7 +28,7 @@ jobs: echo "skip=false" >> $GITHUB_ENV fi env: - PULL_REQUESTS: join(github.event.workflow_run.pull_requests) + PULL_REQUESTS: ${{ join(github.event.workflow_run.pull_requests) }} - name: Get Pull Info uses: octokit/request-action@v2.x From 4d09ed2fe5627c0e254edc204b9ba2b104793579 Mon Sep 17 00:00:00 2001 From: batbattur Date: Thu, 20 Apr 2023 12:23:53 -0700 Subject: [PATCH 004/144] renovate-self-hosted-config --- renovate.json | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..4c8516e --- /dev/null +++ b/renovate.json @@ -0,0 +1,47 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["config:base"], + "stabilityDays": 7, + "timezone": "America/Los_Angeles", + "schedule": ["after 9pm and before 12am every weekday"], + "prHourlyLimit": 1, + "prConcurrentLimit": 1, + "labels": ["dependencies", "renovate"], + "git-submodules": { + "enabled": true + }, + "dependencyDashboard": true, + "major": { + "dependencyDashboardApproval": true + }, + "packageRules": [ + { + "matchPackageNames": ["aws/aws-sdk-php", "rector/rector"], + "matchUpdateTypes": ["patch"], + "enabled": false + }, + { + "matchPackageNames": ["react-commerce"], + "prPriority": 2 + }, + { + "matchDepTypes": ["dependencies", "require"], + "prPriority": 1 + }, + { + "matchDepTypes": ["devDependencies", "requireDev"], + "prPriority": 0 + } + ], + "rebaseWhen": "conflicted", + "enabledManagers": ["npm", "composer", "git-submodules", "github-actions"], + "force": { + "constraints": { + "node": "14.20.1", + "pnpm": "7.27.0" + } + }, + "cloneSubmodules": true, + "allowScripts": true, + "platform": "github" +} From 48d7a4b50406c03369a3e0f552d541954a8d33ee Mon Sep 17 00:00:00 2001 From: batbattur Date: Thu, 20 Apr 2023 12:24:21 -0700 Subject: [PATCH 005/144] renovate workflow --- .github/workflows/renovate.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/renovate.yml diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml new file mode 100644 index 0000000..530ab40 --- /dev/null +++ b/.github/workflows/renovate.yml @@ -0,0 +1,23 @@ +name: Renovate + +on: + workflow_run: + workflows: + - '**' + types: + - completed + +jobs: + renovate: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Self-hosted Renovate + uses: renovatebot/github-action@v36.0.0 + with: + configurationFile: renovate.json + token: ${{ secrets.RENOVATE_TOKEN }} + env: + LOG_LEVEL: 'debug' From 3eb9c2e0152a3e108671f042013c9c6142671578 Mon Sep 17 00:00:00 2001 From: batbattur Date: Thu, 20 Apr 2023 12:30:17 -0700 Subject: [PATCH 006/144] Update workflow --- .github/workflows/renovate.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index 530ab40..212a2cc 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -1,12 +1,9 @@ name: Renovate on: - workflow_run: - workflows: - - '**' - types: - - completed - + workflow_dispatch: + schedule: + - cron: '0/30 * * * *' jobs: renovate: runs-on: ubuntu-latest From fd01fede4df867b0cdb72e773c8a852ced2a48b9 Mon Sep 17 00:00:00 2001 From: batbattur Date: Thu, 20 Apr 2023 12:38:43 -0700 Subject: [PATCH 007/144] fix --- .github/workflows/renovate.yml | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index 212a2cc..867db68 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -2,19 +2,20 @@ name: Renovate on: workflow_dispatch: - schedule: + schedule: - cron: '0/30 * * * *' + jobs: renovate: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v3 + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 - name: Self-hosted Renovate - uses: renovatebot/github-action@v36.0.0 - with: - configurationFile: renovate.json - token: ${{ secrets.RENOVATE_TOKEN }} - env: - LOG_LEVEL: 'debug' + uses: renovatebot/github-action@v36.0.0 + with: + configurationFile: renovate.json + token: ${{ secrets.RENOVATE_TOKEN }} + env: + LOG_LEVEL: 'debug' From 533b70fc8a127ffc5db4663f4bf1b13f63b4c905 Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Thu, 20 Apr 2023 12:42:04 -0700 Subject: [PATCH 008/144] Update renovate.yml --- .github/workflows/renovate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index 867db68..efc6f88 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -12,7 +12,7 @@ jobs: - name: Checkout uses: actions/checkout@v3 - - name: Self-hosted Renovate + - name: Self-hosted Renovate uses: renovatebot/github-action@v36.0.0 with: configurationFile: renovate.json From f482b9d22e767bd54824e23ca9aeac502315749d Mon Sep 17 00:00:00 2001 From: batbattur Date: Thu, 20 Apr 2023 12:46:12 -0700 Subject: [PATCH 009/144] Add pnpm7.4.0 and shelljs0.3.0 --- package.json | 15 +++++++++++++++ pnpm-lock.yaml | 15 +++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 package.json create mode 100644 pnpm-lock.yaml diff --git a/package.json b/package.json new file mode 100644 index 0000000..db2c8e8 --- /dev/null +++ b/package.json @@ -0,0 +1,15 @@ +{ + "name": "All", + "version": "1.0.0", + "description": "", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "keywords": [], + "author": "", + "license": "ISC", + "dependencies": { + "shelljs": "0.3.0" + } +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml new file mode 100644 index 0000000..0f9bae3 --- /dev/null +++ b/pnpm-lock.yaml @@ -0,0 +1,15 @@ +lockfileVersion: 5.4 + +specifiers: + shelljs: 0.3.0 + +dependencies: + shelljs: 0.3.0 + +packages: + + /shelljs/0.3.0: + resolution: {integrity: sha512-Ny0KN4dyT8ZSCE0frtcbAJGoM/HTArpyPkeli1/00aYfm0sbD/Gk/4x7N2DP9QKGpBsiQH7n6rpm1L79RtviEQ==} + engines: {node: '>=0.8.0'} + hasBin: true + dev: false From 98747f35a7e85dd5a4c7867b83ec5a13c678b7b9 Mon Sep 17 00:00:00 2001 From: batbattur Date: Thu, 20 Apr 2023 12:58:32 -0700 Subject: [PATCH 010/144] include repository for renovate --- renovate.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 4c8516e..1b3dd4e 100644 --- a/renovate.json +++ b/renovate.json @@ -43,5 +43,9 @@ }, "cloneSubmodules": true, "allowScripts": true, - "platform": "github" + "platform": "github", + "branchPrefix": "test-renovate/", + "repositories": [ + "batbattur/All" + ] } From b80fb50e2ffbb1da9384d0f1088d5f0302d127fd Mon Sep 17 00:00:00 2001 From: batbattur Date: Thu, 20 Apr 2023 13:31:57 -0700 Subject: [PATCH 011/144] renovate update repository --- renovate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 1b3dd4e..b2b6d57 100644 --- a/renovate.json +++ b/renovate.json @@ -46,6 +46,6 @@ "platform": "github", "branchPrefix": "test-renovate/", "repositories": [ - "batbattur/All" + {"repository": "batbattur/All"} ] } From 561fe58d92131e7029f58e5435b0657f050f260f Mon Sep 17 00:00:00 2001 From: batbattur Date: Thu, 20 Apr 2023 14:20:25 -0700 Subject: [PATCH 012/144] test pnpmfile --- .pnpmfile.cjs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .pnpmfile.cjs diff --git a/.pnpmfile.cjs b/.pnpmfile.cjs new file mode 100644 index 0000000..cb8a717 --- /dev/null +++ b/.pnpmfile.cjs @@ -0,0 +1,15 @@ +'use strict'; + +module.exports = { + hooks: { + readPackage, + }, +}; + + +function readPackage(packageJson, context) { + + console.log("TESTING PNPMFILECJS") + + return packageJson; +} From 55093e1ba8c87ae6a836dafa3410f5b1c54b8f9a Mon Sep 17 00:00:00 2001 From: batbattur Date: Thu, 20 Apr 2023 14:27:38 -0700 Subject: [PATCH 013/144] test --- renovate.json | 1 + 1 file changed, 1 insertion(+) diff --git a/renovate.json b/renovate.json index b2b6d57..b43f62e 100644 --- a/renovate.json +++ b/renovate.json @@ -43,6 +43,7 @@ }, "cloneSubmodules": true, "allowScripts": true, + "ignoreScripts": false, "platform": "github", "branchPrefix": "test-renovate/", "repositories": [ From 9f4995b1c93841deb5559b9152d97df4e572ae23 Mon Sep 17 00:00:00 2001 From: batbattur Date: Fri, 21 Apr 2023 09:38:54 -0700 Subject: [PATCH 014/144] test gitAuthor --- renovate.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index b43f62e..6f74fc6 100644 --- a/renovate.json +++ b/renovate.json @@ -48,5 +48,6 @@ "branchPrefix": "test-renovate/", "repositories": [ {"repository": "batbattur/All"} - ] + ], + "gitAuthor": "Renovate Bot " } From d51b537e72540539d069f39ecb3661ac0a153b4b Mon Sep 17 00:00:00 2001 From: batbattur Date: Fri, 21 Apr 2023 09:47:53 -0700 Subject: [PATCH 015/144] disable renovate --- renovate.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 6f74fc6..ae12d30 100644 --- a/renovate.json +++ b/renovate.json @@ -49,5 +49,6 @@ "repositories": [ {"repository": "batbattur/All"} ], - "gitAuthor": "Renovate Bot " + "gitAuthor": "Renovate Bot ", + "enabled": false } From 23a218ce2dfc99cfb78300a642f392af08bd58d4 Mon Sep 17 00:00:00 2001 From: batbattur Date: Fri, 21 Apr 2023 09:51:42 -0700 Subject: [PATCH 016/144] test again --- renovate.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/renovate.json b/renovate.json index ae12d30..6f74fc6 100644 --- a/renovate.json +++ b/renovate.json @@ -49,6 +49,5 @@ "repositories": [ {"repository": "batbattur/All"} ], - "gitAuthor": "Renovate Bot ", - "enabled": false + "gitAuthor": "Renovate Bot " } From 44c821a9e235417bb20ff40a973a13fde2106c61 Mon Sep 17 00:00:00 2001 From: batbattur Date: Fri, 21 Apr 2023 16:09:40 -0700 Subject: [PATCH 017/144] add react-commerce as submodule --- .gitmodules | 3 +++ react-commerce | 1 + 2 files changed, 4 insertions(+) create mode 100644 .gitmodules create mode 160000 react-commerce diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..fc0dbb2 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "react-commerce"] + path = react-commerce + url = git@github.com:iFixit/react-commerce.git diff --git a/react-commerce b/react-commerce new file mode 160000 index 0000000..bf20b61 --- /dev/null +++ b/react-commerce @@ -0,0 +1 @@ +Subproject commit bf20b618ae5dfa504fe030bcf2e5de9d04a49e83 From 283498e7d7b1040ba5b90965c5217c3313e7c39b Mon Sep 17 00:00:00 2001 From: batbattur Date: Mon, 24 Apr 2023 12:20:46 -0700 Subject: [PATCH 018/144] Renovate configJS hostrules --- .github/workflows/renovate.yml | 3 +- renovateConfig.js | 59 ++++++++++++++++++++++++++++++++++ 2 files changed, 61 insertions(+), 1 deletion(-) create mode 100644 renovateConfig.js diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index efc6f88..5942d10 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -15,7 +15,8 @@ jobs: - name: Self-hosted Renovate uses: renovatebot/github-action@v36.0.0 with: - configurationFile: renovate.json + configurationFile: renovateConfig.js token: ${{ secrets.RENOVATE_TOKEN }} env: LOG_LEVEL: 'debug' + token: ${{ secrets.RENOVATE_TOKEN }} diff --git a/renovateConfig.js b/renovateConfig.js new file mode 100644 index 0000000..5909cbc --- /dev/null +++ b/renovateConfig.js @@ -0,0 +1,59 @@ +const token = process.env.RENOVATE_TOKEN + +module.exports = { + "extends": ["config:base"], + "stabilityDays": 7, + "timezone": "America/Los_Angeles", + "schedule": ["after 9pm and before 12am every weekday"], + "prHourlyLimit": 1, + "prConcurrentLimit": 1, + "labels": ["dependencies", "renovate"], + "git-submodules": { + "enabled": true + }, + "dependencyDashboard": true, + "major": { + "dependencyDashboardApproval": true + }, + "packageRules": [ + { + "matchPackageNames": ["aws/aws-sdk-php", "rector/rector"], + "matchUpdateTypes": ["patch"], + "enabled": false + }, + { + "matchPackageNames": ["react-commerce"], + "prPriority": 2 + }, + { + "matchDepTypes": ["dependencies", "require"], + "prPriority": 1 + }, + { + "matchDepTypes": ["devDependencies", "requireDev"], + "prPriority": 0 + } + ], + "rebaseWhen": "conflicted", + "enabledManagers": ["npm", "composer", "git-submodules", "github-actions"], + "force": { + "constraints": { + "node": "14.20.1", + "pnpm": "7.27.0" + } + }, + "cloneSubmodules": true, + "allowScripts": true, + "ignoreScripts": false, + "platform": "github", + "branchPrefix": "test-renovate/", + "repositories": [ + {"repository": "batbattur/All"} + ], + "gitAuthor": "Renovate Bot ", + "hostRules": [{ + "hostType": "github", + "domainName": "github.com", + "token": token + }] +}; \ No newline at end of file From c64b5c099d665fbe5909e4a3bbbd4188be0903c8 Mon Sep 17 00:00:00 2001 From: batbattur Date: Mon, 24 Apr 2023 12:44:53 -0700 Subject: [PATCH 019/144] use the latest renovate --- .github/workflows/renovate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index 5942d10..2fb2e22 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -13,7 +13,7 @@ jobs: uses: actions/checkout@v3 - name: Self-hosted Renovate - uses: renovatebot/github-action@v36.0.0 + uses: renovatebot/github-action@v36.0.3 with: configurationFile: renovateConfig.js token: ${{ secrets.RENOVATE_TOKEN }} From 62887b6c829f11064e3dd6e93e139eb0bc19d50f Mon Sep 17 00:00:00 2001 From: batbattur Date: Mon, 24 Apr 2023 15:05:29 -0700 Subject: [PATCH 020/144] testing submodule fix --- .github/workflows/renovate.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index 2fb2e22..dabf855 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -12,6 +12,11 @@ jobs: - name: Checkout uses: actions/checkout@v3 + - name: Run + run: | + git submodule sync + git submodule update --init --recursive + - name: Self-hosted Renovate uses: renovatebot/github-action@v36.0.3 with: From 8190e5b08d9ed56192adbc8d83cf1ae127ebe1f1 Mon Sep 17 00:00:00 2001 From: batbattur Date: Mon, 24 Apr 2023 15:08:09 -0700 Subject: [PATCH 021/144] testing --- .github/workflows/renovate.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index dabf855..2f6fa84 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -11,6 +11,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 + with: + submodules: recursive - name: Run run: | From 8a36457415a45ce5ed384e0f7da6a75eaf94f8cc Mon Sep 17 00:00:00 2001 From: batbattur Date: Mon, 24 Apr 2023 15:10:56 -0700 Subject: [PATCH 022/144] testing --- .github/workflows/renovate.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index 2f6fa84..d1de47c 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -14,10 +14,10 @@ jobs: with: submodules: recursive - - name: Run - run: | - git submodule sync - git submodule update --init --recursive + # - name: Run + # run: | + # git submodule sync + # git submodule update --init --recursive - name: Self-hosted Renovate uses: renovatebot/github-action@v36.0.3 From 4a2d50734e4fb56b594b0a1cecc3345d7f898335 Mon Sep 17 00:00:00 2001 From: batbattur Date: Tue, 25 Apr 2023 09:28:10 -0700 Subject: [PATCH 023/144] Delete submodules --- .gitmodules | 3 --- react-commerce | 1 - 2 files changed, 4 deletions(-) delete mode 160000 react-commerce diff --git a/.gitmodules b/.gitmodules index fc0dbb2..e69de29 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +0,0 @@ -[submodule "react-commerce"] - path = react-commerce - url = git@github.com:iFixit/react-commerce.git diff --git a/react-commerce b/react-commerce deleted file mode 160000 index bf20b61..0000000 --- a/react-commerce +++ /dev/null @@ -1 +0,0 @@ -Subproject commit bf20b618ae5dfa504fe030bcf2e5de9d04a49e83 From 5861ec1939f5853c293fe2a9675d2f442316c4ce Mon Sep 17 00:00:00 2001 From: batbattur Date: Tue, 25 Apr 2023 09:31:10 -0700 Subject: [PATCH 024/144] test adding submodule --- .gitmodules | 3 +++ render-template | 1 + 2 files changed, 4 insertions(+) create mode 160000 render-template diff --git a/.gitmodules b/.gitmodules index e69de29..f690ef4 100644 --- a/.gitmodules +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "render-template"] + path = render-template + url = https://github.com/batbattur/render-template.git diff --git a/render-template b/render-template new file mode 160000 index 0000000..216531c --- /dev/null +++ b/render-template @@ -0,0 +1 @@ +Subproject commit 216531c32e32d3c94a3f37ed1101bbc99f28142a From fd47af3befb490d7835ec27ea0650dfb8f1a0c58 Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 26 Apr 2023 16:44:03 -0700 Subject: [PATCH 025/144] add font awesome --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index db2c8e8..ee822b0 100644 --- a/package.json +++ b/package.json @@ -10,6 +10,7 @@ "author": "", "license": "ISC", "dependencies": { + "@fortawesome/fontawesome-svg-core": "^6.4.0", "shelljs": "0.3.0" } } From 63a9caecd47caa6dedb23c2570596a7be7dfb312 Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 26 Apr 2023 16:45:16 -0700 Subject: [PATCH 026/144] testing --- renovateConfig.js | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/renovateConfig.js b/renovateConfig.js index 5909cbc..2fa403c 100644 --- a/renovateConfig.js +++ b/renovateConfig.js @@ -51,9 +51,11 @@ module.exports = { {"repository": "batbattur/All"} ], "gitAuthor": "Renovate Bot ", - "hostRules": [{ - "hostType": "github", - "domainName": "github.com", - "token": token - }] + "hostRules": [ + { + "hostType": "github", + "domainName": "github.com", + "token": token + } + ] }; \ No newline at end of file From d01d25560fdf09bfc0570d809a71f9ed57eb3d39 Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 26 Apr 2023 16:53:58 -0700 Subject: [PATCH 027/144] testing --- package.json | 1 + pnpm-lock.yaml | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) diff --git a/package.json b/package.json index ee822b0..6ea1a89 100644 --- a/package.json +++ b/package.json @@ -11,6 +11,7 @@ "license": "ISC", "dependencies": { "@fortawesome/fontawesome-svg-core": "^6.4.0", + "@fortawesome/pro-solid-svg-icons": "^6.4.0", "shelljs": "0.3.0" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 0f9bae3..cf8f2eb 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,13 +1,39 @@ lockfileVersion: 5.4 specifiers: + '@fortawesome/fontawesome-svg-core': ^6.4.0 + '@fortawesome/pro-solid-svg-icons': ^6.4.0 shelljs: 0.3.0 dependencies: + '@fortawesome/fontawesome-svg-core': 6.4.0 + '@fortawesome/pro-solid-svg-icons': 6.4.0 shelljs: 0.3.0 packages: + /@fortawesome/fontawesome-common-types/6.4.0: + resolution: {integrity: sha512-HNii132xfomg5QVZw0HwXXpN22s7VBHQBv9CeOu9tfJnhsWQNd2lmTNi8CSrnw5B+5YOmzu1UoPAyxaXsJ6RgQ==, tarball: '@fortawesome/fontawesome-common-types/-/6.4.0/fontawesome-common-types-6.4.0.tgz'} + engines: {node: '>=6'} + requiresBuild: true + dev: false + + /@fortawesome/fontawesome-svg-core/6.4.0: + resolution: {integrity: sha512-Bertv8xOiVELz5raB2FlXDPKt+m94MQ3JgDfsVbrqNpLU9+UE2E18GKjLKw+d3XbeYPqg1pzyQKGsrzbw+pPaw==, tarball: '@fortawesome/fontawesome-svg-core/-/6.4.0/fontawesome-svg-core-6.4.0.tgz'} + engines: {node: '>=6'} + requiresBuild: true + dependencies: + '@fortawesome/fontawesome-common-types': 6.4.0 + dev: false + + /@fortawesome/pro-solid-svg-icons/6.4.0: + resolution: {integrity: sha512-R54gxoqHAZdlSCmE7JYpQKT64Jgw59nQIyabT6oh3jsb70O4A3ea+ojVBCKsvoW4UhYe1IOXS1o4PqDEW8Y7Tg==, tarball: '@fortawesome/pro-solid-svg-icons/-/6.4.0/pro-solid-svg-icons-6.4.0.tgz'} + engines: {node: '>=6'} + requiresBuild: true + dependencies: + '@fortawesome/fontawesome-common-types': 6.4.0 + dev: false + /shelljs/0.3.0: resolution: {integrity: sha512-Ny0KN4dyT8ZSCE0frtcbAJGoM/HTArpyPkeli1/00aYfm0sbD/Gk/4x7N2DP9QKGpBsiQH7n6rpm1L79RtviEQ==} engines: {node: '>=0.8.0'} From 43829a2d13c4e7a8cd38cc96548a9259da385114 Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 26 Apr 2023 17:03:23 -0700 Subject: [PATCH 028/144] test npm token --- renovateConfig.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/renovateConfig.js b/renovateConfig.js index 2fa403c..2a40042 100644 --- a/renovateConfig.js +++ b/renovateConfig.js @@ -1,4 +1,4 @@ -const token = process.env.RENOVATE_TOKEN +const token = process.env.FONT_AWESOME_TOKEN; module.exports = { "extends": ["config:base"], @@ -53,9 +53,9 @@ module.exports = { "gitAuthor": "Renovate Bot ", "hostRules": [ { - "hostType": "github", - "domainName": "github.com", - "token": token + "matchHost": "npm.fontawesome.com", + "token": token, + "authType": "Basic", } ] }; \ No newline at end of file From a15da4d512ca64d0a476da0554f55bc06368b2ac Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 26 Apr 2023 17:04:00 -0700 Subject: [PATCH 029/144] testing --- .github/workflows/renovate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index d1de47c..30a6566 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -26,4 +26,4 @@ jobs: token: ${{ secrets.RENOVATE_TOKEN }} env: LOG_LEVEL: 'debug' - token: ${{ secrets.RENOVATE_TOKEN }} + token: ${{ secrets.FONT_AWESOME_TOKEN }} From 22146b5bc78881c7f1f06ef499c98386da657cef Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 26 Apr 2023 17:13:32 -0700 Subject: [PATCH 030/144] test --- renovateConfig.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/renovateConfig.js b/renovateConfig.js index 2a40042..a50b4a9 100644 --- a/renovateConfig.js +++ b/renovateConfig.js @@ -53,9 +53,9 @@ module.exports = { "gitAuthor": "Renovate Bot ", "hostRules": [ { - "matchHost": "npm.fontawesome.com", + "hostType": "npm", + "matchHost": "https://npm.fontawesome.com/", "token": token, - "authType": "Basic", } ] }; \ No newline at end of file From e35eced231d63e6a217bf5d20aea33a70ea64535 Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 26 Apr 2023 17:30:07 -0700 Subject: [PATCH 031/144] add npmrc config --- renovateConfig.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/renovateConfig.js b/renovateConfig.js index a50b4a9..ec2bb69 100644 --- a/renovateConfig.js +++ b/renovateConfig.js @@ -57,5 +57,6 @@ module.exports = { "matchHost": "https://npm.fontawesome.com/", "token": token, } - ] + ], + "npmrc": `//npm.fontawesome.com/` }; \ No newline at end of file From b23c2c8df21e19eeb6893bdbaee2fa605fd315a5 Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 26 Apr 2023 17:35:09 -0700 Subject: [PATCH 032/144] test --- renovateConfig.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renovateConfig.js b/renovateConfig.js index ec2bb69..ec13590 100644 --- a/renovateConfig.js +++ b/renovateConfig.js @@ -58,5 +58,5 @@ module.exports = { "token": token, } ], - "npmrc": `//npm.fontawesome.com/` + "npmrc": `//npm.fontawesome.com/:_authToken=${token}` }; \ No newline at end of file From d4d6f3db62389b24c7b9c0cfc2c061590b4b0361 Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 26 Apr 2023 17:54:42 -0700 Subject: [PATCH 033/144] test --- .github/workflows/renovate.yml | 2 +- renovateConfig.js | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index 30a6566..676aa31 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -26,4 +26,4 @@ jobs: token: ${{ secrets.RENOVATE_TOKEN }} env: LOG_LEVEL: 'debug' - token: ${{ secrets.FONT_AWESOME_TOKEN }} + RENOVATE_FONTAWESOME_TOKEN: ${{ secrets.FONT_AWESOME_TOKEN }} diff --git a/renovateConfig.js b/renovateConfig.js index ec13590..59d2a68 100644 --- a/renovateConfig.js +++ b/renovateConfig.js @@ -1,4 +1,4 @@ -const token = process.env.FONT_AWESOME_TOKEN; +const RENOVATE_FONTAWESOME_TOKEN = process.env.RENOVATE_FONTAWESOME_TOKEN; module.exports = { "extends": ["config:base"], @@ -55,8 +55,7 @@ module.exports = { { "hostType": "npm", "matchHost": "https://npm.fontawesome.com/", - "token": token, + "token": RENOVATE_FONTAWESOME_TOKEN, } ], - "npmrc": `//npm.fontawesome.com/:_authToken=${token}` }; \ No newline at end of file From 5936fbb03176c932ff4f90484169229c5b362a29 Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 26 Apr 2023 17:58:11 -0700 Subject: [PATCH 034/144] test --- .npmrc | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .npmrc diff --git a/.npmrc b/.npmrc new file mode 100644 index 0000000..2e743d8 --- /dev/null +++ b/.npmrc @@ -0,0 +1,5 @@ +always-auth=false + +@fortawesome:registry=https://npm.fontawesome.com/ +//npm.fontawesome.com/:_authToken=${TOKEN} +//npm.fontawesome.com/:always-auth=true From 573786b296f7a393c0dba4c79f574e6812c79b8e Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 26 Apr 2023 17:59:30 -0700 Subject: [PATCH 035/144] testing --- .github/workflows/renovate.yml | 2 ++ .npmrc | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index 676aa31..7dd382d 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -8,6 +8,8 @@ on: jobs: renovate: runs-on: ubuntu-latest + env: + FATOKEN: ${{ secrets.FONT_AWESOME_TOKEN }} steps: - name: Checkout uses: actions/checkout@v3 diff --git a/.npmrc b/.npmrc index 2e743d8..f5a4c10 100644 --- a/.npmrc +++ b/.npmrc @@ -1,5 +1,5 @@ always-auth=false @fortawesome:registry=https://npm.fontawesome.com/ -//npm.fontawesome.com/:_authToken=${TOKEN} +//npm.fontawesome.com/:_authToken=${FATOKEN} //npm.fontawesome.com/:always-auth=true From 4c31187992504269a9151dce01edeeb292908eeb Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 26 Apr 2023 18:03:54 -0700 Subject: [PATCH 036/144] test --- .github/workflows/renovate.yml | 2 -- .npmrc | 5 ----- renovateConfig.js | 4 ++-- 3 files changed, 2 insertions(+), 9 deletions(-) delete mode 100644 .npmrc diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index 7dd382d..676aa31 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -8,8 +8,6 @@ on: jobs: renovate: runs-on: ubuntu-latest - env: - FATOKEN: ${{ secrets.FONT_AWESOME_TOKEN }} steps: - name: Checkout uses: actions/checkout@v3 diff --git a/.npmrc b/.npmrc deleted file mode 100644 index f5a4c10..0000000 --- a/.npmrc +++ /dev/null @@ -1,5 +0,0 @@ -always-auth=false - -@fortawesome:registry=https://npm.fontawesome.com/ -//npm.fontawesome.com/:_authToken=${FATOKEN} -//npm.fontawesome.com/:always-auth=true diff --git a/renovateConfig.js b/renovateConfig.js index 59d2a68..4838c86 100644 --- a/renovateConfig.js +++ b/renovateConfig.js @@ -1,4 +1,4 @@ -const RENOVATE_FONTAWESOME_TOKEN = process.env.RENOVATE_FONTAWESOME_TOKEN; +const FONTAWESOME_TOKEN = process.env.RENOVATE_FONTAWESOME_TOKEN; module.exports = { "extends": ["config:base"], @@ -55,7 +55,7 @@ module.exports = { { "hostType": "npm", "matchHost": "https://npm.fontawesome.com/", - "token": RENOVATE_FONTAWESOME_TOKEN, + "token": FONTAWESOME_TOKEN, } ], }; \ No newline at end of file From 41c063dd6380cb7994cf23b0edaf2c4ff99eeaa8 Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 26 Apr 2023 18:23:06 -0700 Subject: [PATCH 037/144] working stage --- .github/workflows/renovate.yml | 2 ++ .npmrc | 5 +++++ 2 files changed, 7 insertions(+) create mode 100644 .npmrc diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index 676aa31..7dd382d 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -8,6 +8,8 @@ on: jobs: renovate: runs-on: ubuntu-latest + env: + FATOKEN: ${{ secrets.FONT_AWESOME_TOKEN }} steps: - name: Checkout uses: actions/checkout@v3 diff --git a/.npmrc b/.npmrc new file mode 100644 index 0000000..f5a4c10 --- /dev/null +++ b/.npmrc @@ -0,0 +1,5 @@ +always-auth=false + +@fortawesome:registry=https://npm.fontawesome.com/ +//npm.fontawesome.com/:_authToken=${FATOKEN} +//npm.fontawesome.com/:always-auth=true From 196c902249a45918b77d236661734db0b2400840 Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 26 Apr 2023 18:28:26 -0700 Subject: [PATCH 038/144] move renoate config to .github --- renovateConfig.js => .github/renovateConfig.js | 0 .github/workflows/renovate.yml | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename renovateConfig.js => .github/renovateConfig.js (100%) diff --git a/renovateConfig.js b/.github/renovateConfig.js similarity index 100% rename from renovateConfig.js rename to .github/renovateConfig.js diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index 7dd382d..2c5b017 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -24,7 +24,7 @@ jobs: - name: Self-hosted Renovate uses: renovatebot/github-action@v36.0.3 with: - configurationFile: renovateConfig.js + configurationFile: .github/renovateConfig.json token: ${{ secrets.RENOVATE_TOKEN }} env: LOG_LEVEL: 'debug' From 1ff6834489f57b1b80eacee27e71dc804c8a6114 Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 26 Apr 2023 18:32:52 -0700 Subject: [PATCH 039/144] test --- .github/workflows/renovate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index 2c5b017..86bf981 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -24,7 +24,7 @@ jobs: - name: Self-hosted Renovate uses: renovatebot/github-action@v36.0.3 with: - configurationFile: .github/renovateConfig.json + configurationFile: .github/renovateConfig.js token: ${{ secrets.RENOVATE_TOKEN }} env: LOG_LEVEL: 'debug' From c9ad9b486a01fe5114b1ec02c04efff55788c3d2 Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Mon, 8 May 2023 17:09:18 -0700 Subject: [PATCH 040/144] Update checklist.yml --- .github/workflows/checklist.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index 32f1378..cf9e1b7 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -20,6 +20,18 @@ jobs: - name: Checkout code run: jq --version + + - name: Test output + id: check-queue + run: echo "QUEUE_LOCKED='true'" >>$GITHUB_OUTPUT + + - name: Test steps.check-queue.outputs.QUEUE_LOCKED != 'true' + if: steps.check-queue.outputs.QUEUE_LOCKED != 'true' + run: echo "hi" + + - name: Test steps.check-queue.outputs.QUEUE_LOCKED != 'true' + if: ! steps.check-queue.outputs.QUEUE_LOCKED + run: echo "hi" - name: Dump GitHub context env: From 23e1047a4931a2fb4ec05fa2dd9655d89a182586 Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Mon, 8 May 2023 17:11:39 -0700 Subject: [PATCH 041/144] Update checklist.yml --- .github/workflows/checklist.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index cf9e1b7..6a95815 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -30,7 +30,7 @@ jobs: run: echo "hi" - name: Test steps.check-queue.outputs.QUEUE_LOCKED != 'true' - if: ! steps.check-queue.outputs.QUEUE_LOCKED + if: "!steps.check-queue.outputs.QUEUE_LOCKED" run: echo "hi" - name: Dump GitHub context From 741f9eb4cc5da8f601438a517e229a6c17d05f0d Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Mon, 8 May 2023 17:15:09 -0700 Subject: [PATCH 042/144] Update checklist.yml --- .github/workflows/checklist.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index 6a95815..ef3adab 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -23,13 +23,13 @@ jobs: - name: Test output id: check-queue - run: echo "QUEUE_LOCKED='true'" >>$GITHUB_OUTPUT + run: echo "QUEUE_LOCKED='false'" >>$GITHUB_OUTPUT - - name: Test steps.check-queue.outputs.QUEUE_LOCKED != 'true' - if: steps.check-queue.outputs.QUEUE_LOCKED != 'true' - run: echo "hi" +# - name: Should skip +# if: steps.check-queue.outputs.QUEUE_LOCKED != 'true' +# run: echo "hi" - - name: Test steps.check-queue.outputs.QUEUE_LOCKED != 'true' + - name: Should skip if: "!steps.check-queue.outputs.QUEUE_LOCKED" run: echo "hi" From a298b83668c62f1cd526fe34246cd8d895429818 Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Mon, 8 May 2023 17:22:54 -0700 Subject: [PATCH 043/144] Update checklist.yml --- .github/workflows/checklist.yml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index ef3adab..d1cfc3d 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -23,16 +23,19 @@ jobs: - name: Test output id: check-queue - run: echo "QUEUE_LOCKED='false'" >>$GITHUB_OUTPUT + run: echo "QUEUE_LOCKED='true'" >>$GITHUB_OUTPUT -# - name: Should skip -# if: steps.check-queue.outputs.QUEUE_LOCKED != 'true' -# run: echo "hi" + - name: Echo QUEUE_LOCKED + run: echo "${{ steps.check-queue.outputs.QUEUE_LOCKED }}" - - name: Should skip + - name: Should skip (using negation) if: "!steps.check-queue.outputs.QUEUE_LOCKED" run: echo "hi" - + + - name: Should skip (using comparison) + if: steps.check-queue.outputs.QUEUE_LOCKED != 'true' + run: echo "hi" + - name: Dump GitHub context env: GITHUB_CONTEXT: ${{ toJSON(github) }} From 2c79d5b4d5920f57d25fc37b2fd7b99df62119f0 Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Mon, 8 May 2023 17:24:26 -0700 Subject: [PATCH 044/144] Update checklist.yml --- .github/workflows/checklist.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index d1cfc3d..548a7b0 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -23,7 +23,7 @@ jobs: - name: Test output id: check-queue - run: echo "QUEUE_LOCKED='true'" >>$GITHUB_OUTPUT + run: echo "QUEUE_LOCKED=true" >>$GITHUB_OUTPUT - name: Echo QUEUE_LOCKED run: echo "${{ steps.check-queue.outputs.QUEUE_LOCKED }}" From 18a4dd565e55a10ab52524c032607fa6860cd723 Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Mon, 8 May 2023 17:25:45 -0700 Subject: [PATCH 045/144] Update checklist.yml --- .github/workflows/checklist.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index 548a7b0..60e996b 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -23,7 +23,7 @@ jobs: - name: Test output id: check-queue - run: echo "QUEUE_LOCKED=true" >>$GITHUB_OUTPUT + run: echo "QUEUE_LOCKED=false" >>$GITHUB_OUTPUT - name: Echo QUEUE_LOCKED run: echo "${{ steps.check-queue.outputs.QUEUE_LOCKED }}" From 5ab7bb1fbc0035b3b906904155e42c572b4a35b7 Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Mon, 8 May 2023 17:40:18 -0700 Subject: [PATCH 046/144] Update checklist.yml --- .github/workflows/checklist.yml | 75 +++++++++++++++++++++------------ 1 file changed, 49 insertions(+), 26 deletions(-) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index 60e996b..c6ec608 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -23,44 +23,67 @@ jobs: - name: Test output id: check-queue - run: echo "QUEUE_LOCKED=false" >>$GITHUB_OUTPUT + run: echo "QUEUE_LOCKED=true" >>$GITHUB_OUTPUT - name: Echo QUEUE_LOCKED run: echo "${{ steps.check-queue.outputs.QUEUE_LOCKED }}" - - name: Should skip (using negation) - if: "!steps.check-queue.outputs.QUEUE_LOCKED" + - name: Should be skipped (using negation) + if: steps.check-queue.outputs.QUEUE_LOCKED != 'true' run: echo "hi" - name: Should skip (using comparison) - if: steps.check-queue.outputs.QUEUE_LOCKED != 'true' + if: ! steps.check-queue.outputs.QUEUE_LOCKED + run: echo "hi" + + - name: eval expression + run: echo ${{ ! steps.check-queue.outputs.QUEUE_LOCKED }} + + - name: Test output + id: check-queue-false + run: echo "QUEUE_LOCKED=false" >>$GITHUB_OUTPUT + + - name: Echo QUEUE_LOCKED + run: echo "${{ steps.check-queue-false.outputs.QUEUE_LOCKED }}" + + - name: Should run + if: steps.check-queue-false.outputs.QUEUE_LOCKED != 'true' + run: echo "hi" + + - name: Should run (using comparison) + if: ! steps.check-queue-false.outputs.QUEUE_LOCKED + run: echo "hi" + + - name: eval expression run: echo "hi" + env: ${{ ! steps.check-queue-false.outputs.QUEUE_LOCKED }} + - - name: Dump GitHub context - env: - GITHUB_CONTEXT: ${{ toJSON(github) }} - run: echo "$GITHUB_CONTEXT" +# - name: Dump GitHub context +# env: +# GITHUB_CONTEXT: ${{ toJSON(github) }} +# run: echo "$GITHUB_CONTEXT" - - name: Print TESTING - run: | - echo ${{ github.workflow }} - echo ${{ github.ref }} - echo ${{ github.run_number }} - shell: bash +# - name: Print TESTING +# run: | +# echo ${{ github.workflow }} +# echo ${{ github.ref }} +# echo ${{ github.run_number }} +# shell: bash - - name: Print github.sha - run: echo ${{ github.sha }} +# - name: Print github.sha +# run: echo ${{ github.sha }} - - name: Print github.event.pull_request.head.sha - run: echo ${{ github.event.pull_request.head.sha }} +# - name: Print github.event.pull_request.head.sha +# run: echo ${{ github.event.pull_request.head.sha }} - - name: Get head commit sha from the push event and set it to push_head_commit env - run: echo "push_head_commit=$(echo $COMMITS_JSON | jq ".[length - 2].id")" >> $GITHUB_ENV - shell: bash - env: - COMMITS_JSON: ${{ toJSON(github.event.commits) }} +# - name: Get head commit sha from the push event and set it to push_head_commit env +# run: echo "push_head_commit=$(echo $COMMITS_JSON | jq ".[length - 2].id")" >> $GITHUB_ENV +# shell: bash +# env: +# COMMITS_JSON: ${{ toJSON(github.event.commits) }} - - name: Print sha of the head commit - run: echo "$push_head_commit" - shell: bash +# - name: Print sha of the head commit +# run: echo "$push_head_commit" +# shell: bash From 2dc36d78307bec8713e7ffb623d42aca25a00780 Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Mon, 8 May 2023 17:41:28 -0700 Subject: [PATCH 047/144] Update checklist.yml --- .github/workflows/checklist.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index c6ec608..5462fa5 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -33,11 +33,11 @@ jobs: run: echo "hi" - name: Should skip (using comparison) - if: ! steps.check-queue.outputs.QUEUE_LOCKED + if: "!steps.check-queue.outputs.QUEUE_LOCKED" run: echo "hi" - name: eval expression - run: echo ${{ ! steps.check-queue.outputs.QUEUE_LOCKED }} + run: echo "${{ !steps.check-queue.outputs.QUEUE_LOCKED }}" - name: Test output id: check-queue-false @@ -51,12 +51,12 @@ jobs: run: echo "hi" - name: Should run (using comparison) - if: ! steps.check-queue-false.outputs.QUEUE_LOCKED + if: "!steps.check-queue-false.outputs.QUEUE_LOCKED" run: echo "hi" - name: eval expression run: echo "hi" - env: ${{ ! steps.check-queue-false.outputs.QUEUE_LOCKED }} + env: "${{ ! steps.check-queue-false.outputs.QUEUE_LOCKED }}" # - name: Dump GitHub context From 62fe7984a22f284957e75c99066a885ae202cd20 Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Mon, 8 May 2023 17:45:14 -0700 Subject: [PATCH 048/144] Update checklist.yml --- .github/workflows/checklist.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index 5462fa5..52d89a5 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -55,8 +55,7 @@ jobs: run: echo "hi" - name: eval expression - run: echo "hi" - env: "${{ ! steps.check-queue-false.outputs.QUEUE_LOCKED }}" + run: echo "${{ !steps.check-queue-false.outputs.QUEUE_LOCKED }}" # - name: Dump GitHub context From 216612216143689d63c3735acc7b73e3f9ad9567 Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Mon, 8 May 2023 18:01:17 -0700 Subject: [PATCH 049/144] Update checklist.yml --- .github/workflows/checklist.yml | 39 ++++++++++++++++----------------- 1 file changed, 19 insertions(+), 20 deletions(-) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index 52d89a5..29dab1d 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -22,41 +22,40 @@ jobs: run: jq --version - name: Test output - id: check-queue - run: echo "QUEUE_LOCKED=true" >>$GITHUB_OUTPUT + run: echo "QUEUE_LOCKED=true" >>$GITHUB_ENV - name: Echo QUEUE_LOCKED - run: echo "${{ steps.check-queue.outputs.QUEUE_LOCKED }}" + run: echo "${{ env.QUEUE_LOCKED }}" - - name: Should be skipped (using negation) - if: steps.check-queue.outputs.QUEUE_LOCKED != 'true' + - name: Should run 1 + if: ! env.QUEUE_LOCKED == 'false' run: echo "hi" - - name: Should skip (using comparison) - if: "!steps.check-queue.outputs.QUEUE_LOCKED" + - name: Should skip 1 + if: ! env.QUEUE_LOCKED == 'true' run: echo "hi" - - name: eval expression - run: echo "${{ !steps.check-queue.outputs.QUEUE_LOCKED }}" - - name: Test output - id: check-queue-false - run: echo "QUEUE_LOCKED=false" >>$GITHUB_OUTPUT + run: echo "QUEUE_LOCKED=false" >>$GITHUB_ENV - name: Echo QUEUE_LOCKED - run: echo "${{ steps.check-queue-false.outputs.QUEUE_LOCKED }}" + run: echo "${{ env.QUEUE_LOCKED }}" - - name: Should run - if: steps.check-queue-false.outputs.QUEUE_LOCKED != 'true' + - name: Should run 2 + if: ! env.QUEUE_LOCKED == 'false' run: echo "hi" - - name: Should run (using comparison) - if: "!steps.check-queue-false.outputs.QUEUE_LOCKED" + - name: Should skip 2 + if: ! env.QUEUE_LOCKED == 'true' run: echo "hi" - - - name: eval expression - run: echo "${{ !steps.check-queue-false.outputs.QUEUE_LOCKED }}" + - name: Should run 3 + if: ! env.QUEUE_LOCKED != 'false' + run: echo "hi" + + - name: Should skip 3 + if: ! env.QUEUE_LOCKED != 'true' + run: echo "hi" # - name: Dump GitHub context # env: From 7488ba0a3243530bb088a8a71f04e483f907c704 Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Mon, 8 May 2023 18:03:18 -0700 Subject: [PATCH 050/144] Update checklist.yml --- .github/workflows/checklist.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index 29dab1d..87d15b7 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -28,11 +28,11 @@ jobs: run: echo "${{ env.QUEUE_LOCKED }}" - name: Should run 1 - if: ! env.QUEUE_LOCKED == 'false' + if: "! env.QUEUE_LOCKED == 'false'" run: echo "hi" - name: Should skip 1 - if: ! env.QUEUE_LOCKED == 'true' + if: "! env.QUEUE_LOCKED == 'true'" run: echo "hi" - name: Test output @@ -42,19 +42,19 @@ jobs: run: echo "${{ env.QUEUE_LOCKED }}" - name: Should run 2 - if: ! env.QUEUE_LOCKED == 'false' + if: "! env.QUEUE_LOCKED == 'false'" run: echo "hi" - name: Should skip 2 - if: ! env.QUEUE_LOCKED == 'true' + if: "! env.QUEUE_LOCKED == 'true'" run: echo "hi" - name: Should run 3 - if: ! env.QUEUE_LOCKED != 'false' + if: env.QUEUE_LOCKED != 'false' run: echo "hi" - name: Should skip 3 - if: ! env.QUEUE_LOCKED != 'true' + if: env.QUEUE_LOCKED != 'true' run: echo "hi" # - name: Dump GitHub context From da6061d4258695ab02b1ea47823ed080caded579 Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Mon, 8 May 2023 18:09:44 -0700 Subject: [PATCH 051/144] Update checklist.yml --- .github/workflows/checklist.yml | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index 87d15b7..969675e 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -28,11 +28,11 @@ jobs: run: echo "${{ env.QUEUE_LOCKED }}" - name: Should run 1 - if: "! env.QUEUE_LOCKED == 'false'" + if: env.QUEUE_LOCKED == false run: echo "hi" - name: Should skip 1 - if: "! env.QUEUE_LOCKED == 'true'" + if: env.QUEUE_LOCKED == true run: echo "hi" - name: Test output @@ -41,20 +41,18 @@ jobs: - name: Echo QUEUE_LOCKED run: echo "${{ env.QUEUE_LOCKED }}" - - name: Should run 2 - if: "! env.QUEUE_LOCKED == 'false'" + - name: Should run 1 + if: env.QUEUE_LOCKED == false run: echo "hi" - - name: Should skip 2 - if: "! env.QUEUE_LOCKED == 'true'" + - name: Should skip 1 + if: env.QUEUE_LOCKED == true run: echo "hi" - - name: Should run 3 - if: env.QUEUE_LOCKED != 'false' - run: echo "hi" + - - name: Should skip 3 - if: env.QUEUE_LOCKED != 'true' + - name: Should skip 2 + if: "! env.QUEUE_LOCKED" run: echo "hi" # - name: Dump GitHub context From a6573f7fe6c56215afa6ae2ddf38a48454e9afcc Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Mon, 8 May 2023 18:16:14 -0700 Subject: [PATCH 052/144] Update checklist.yml --- .github/workflows/checklist.yml | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index 969675e..d83f93a 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -28,11 +28,11 @@ jobs: run: echo "${{ env.QUEUE_LOCKED }}" - name: Should run 1 - if: env.QUEUE_LOCKED == false + if: ${{ env.QUEUE_LOCKED == false }} run: echo "hi" - name: Should skip 1 - if: env.QUEUE_LOCKED == true + if: ${{ env.QUEUE_LOCKED == true }} run: echo "hi" - name: Test output @@ -42,18 +42,21 @@ jobs: run: echo "${{ env.QUEUE_LOCKED }}" - name: Should run 1 - if: env.QUEUE_LOCKED == false + if: ${{ env.QUEUE_LOCKED == false }} run: echo "hi" - name: Should skip 1 - if: env.QUEUE_LOCKED == true + if: ${{ env.QUEUE_LOCKED == true }} run: echo "hi" - + - name: Test output + run: echo "QUEUE_LOCKED=true" >>$GITHUB_ENV - - name: Should skip 2 - if: "! env.QUEUE_LOCKED" - run: echo "hi" + - name: ${{ env.QUEUE_LOCKED == true }} + run: echo ${{ env.QUEUE_LOCKED == true }} + + - name: ${{ env.QUEUE_LOCKED == false }} + run: echo ${{ env.QUEUE_LOCKED == false }} # - name: Dump GitHub context # env: From 9df7422e28824216b4b14df472dbd03b99760ca3 Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Mon, 8 May 2023 18:19:03 -0700 Subject: [PATCH 053/144] Update checklist.yml --- .github/workflows/checklist.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index d83f93a..313dc4a 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -28,11 +28,11 @@ jobs: run: echo "${{ env.QUEUE_LOCKED }}" - name: Should run 1 - if: ${{ env.QUEUE_LOCKED == false }} + if: ${{ env.QUEUE_LOCKED == 'false' }} run: echo "hi" - name: Should skip 1 - if: ${{ env.QUEUE_LOCKED == true }} + if: ${{ env.QUEUE_LOCKED == 'true' }} run: echo "hi" - name: Test output @@ -42,21 +42,21 @@ jobs: run: echo "${{ env.QUEUE_LOCKED }}" - name: Should run 1 - if: ${{ env.QUEUE_LOCKED == false }} + if: ${{ env.QUEUE_LOCKED == 'false' }} run: echo "hi" - name: Should skip 1 - if: ${{ env.QUEUE_LOCKED == true }} + if: ${{ env.QUEUE_LOCKED == 'true' }} run: echo "hi" - name: Test output run: echo "QUEUE_LOCKED=true" >>$GITHUB_ENV - - name: ${{ env.QUEUE_LOCKED == true }} - run: echo ${{ env.QUEUE_LOCKED == true }} + - name: ${{ env.QUEUE_LOCKED == 'true' }} + run: echo ${{ env.QUEUE_LOCKED == 'true' }} - - name: ${{ env.QUEUE_LOCKED == false }} - run: echo ${{ env.QUEUE_LOCKED == false }} + - name: ${{ env.QUEUE_LOCKED == 'false' }} + run: echo ${{ env.QUEUE_LOCKED == 'false' }} # - name: Dump GitHub context # env: From 1b3386c62ee0372f1547ecd5f7c93f246a68a0ac Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Mon, 8 May 2023 18:35:23 -0700 Subject: [PATCH 054/144] Update checklist.yml --- .github/workflows/checklist.yml | 33 +++++++++++++-------------------- 1 file changed, 13 insertions(+), 20 deletions(-) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index 313dc4a..45fc1a4 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -21,42 +21,35 @@ jobs: - name: Checkout code run: jq --version - - name: Test output + - name: Test output QUEUE_LOCKED=true run: echo "QUEUE_LOCKED=true" >>$GITHUB_ENV - name: Echo QUEUE_LOCKED run: echo "${{ env.QUEUE_LOCKED }}" - - name: Should run 1 - if: ${{ env.QUEUE_LOCKED == 'false' }} - run: echo "hi" - - name: Should skip 1 - if: ${{ env.QUEUE_LOCKED == 'true' }} + if: env.QUEUE_LOCKED == 'true' run: echo "hi" - - name: Test output - run: echo "QUEUE_LOCKED=false" >>$GITHUB_ENV + - name: Should run deploy 1 + if: env.QUEUE_LOCKED == 'false' + run: echo "hi" + + - name: Test output QUEUE_LOCKED=false + run: echo "QUEUE_LOCKED=true" >>$GITHUB_ENV - name: Echo QUEUE_LOCKED run: echo "${{ env.QUEUE_LOCKED }}" - - name: Should run 1 - if: ${{ env.QUEUE_LOCKED == 'false' }} + - name: Should skip 1 + if: env.QUEUE_LOCKED == 'true' run: echo "hi" - - name: Should skip 1 - if: ${{ env.QUEUE_LOCKED == 'true' }} + - name: Should run deploy 1 + if: env.QUEUE_LOCKED == 'false' run: echo "hi" - - name: Test output - run: echo "QUEUE_LOCKED=true" >>$GITHUB_ENV - - - name: ${{ env.QUEUE_LOCKED == 'true' }} - run: echo ${{ env.QUEUE_LOCKED == 'true' }} - - - name: ${{ env.QUEUE_LOCKED == 'false' }} - run: echo ${{ env.QUEUE_LOCKED == 'false' }} + # - name: Dump GitHub context # env: From 2b1a2c48d0b71d8be732e449915358ea590e34ef Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Mon, 8 May 2023 18:39:18 -0700 Subject: [PATCH 055/144] Update checklist.yml --- .github/workflows/checklist.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index 45fc1a4..ef7adf4 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -36,7 +36,7 @@ jobs: run: echo "hi" - name: Test output QUEUE_LOCKED=false - run: echo "QUEUE_LOCKED=true" >>$GITHUB_ENV + run: echo "QUEUE_LOCKED=false" >>$GITHUB_ENV - name: Echo QUEUE_LOCKED run: echo "${{ env.QUEUE_LOCKED }}" From ebe4c52a06d7939fed9ec5ef10274b24c5d6b062 Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Mon, 8 May 2023 18:41:51 -0700 Subject: [PATCH 056/144] Update checklist.yml --- .github/workflows/checklist.yml | 19 +++---------------- 1 file changed, 3 insertions(+), 16 deletions(-) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index ef7adf4..9852a5a 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -27,27 +27,14 @@ jobs: - name: Echo QUEUE_LOCKED run: echo "${{ env.QUEUE_LOCKED }}" - - name: Should skip 1 - if: env.QUEUE_LOCKED == 'true' - run: echo "hi" - - - name: Should run deploy 1 + - name: Deploy if: env.QUEUE_LOCKED == 'false' run: echo "hi" - - - name: Test output QUEUE_LOCKED=false - run: echo "QUEUE_LOCKED=false" >>$GITHUB_ENV - - name: Echo QUEUE_LOCKED - run: echo "${{ env.QUEUE_LOCKED }}" - - - name: Should skip 1 - if: env.QUEUE_LOCKED == 'true' + - name: Deploy 2 + if: "{{ ! env.QUEUE_LOCKED }}" run: echo "hi" - - name: Should run deploy 1 - if: env.QUEUE_LOCKED == 'false' - run: echo "hi" From 0f7734a7ebbc5c2ca5effb4501d3d0eca8843aaf Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Mon, 8 May 2023 18:42:35 -0700 Subject: [PATCH 057/144] Update checklist.yml --- .github/workflows/checklist.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index 9852a5a..adbc898 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -32,7 +32,7 @@ jobs: run: echo "hi" - name: Deploy 2 - if: "{{ ! env.QUEUE_LOCKED }}" + if: "! env.QUEUE_LOCKED" run: echo "hi" From 3d307528de432fe4e610f1678a050a15944cabc3 Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Mon, 8 May 2023 18:43:13 -0700 Subject: [PATCH 058/144] Update checklist.yml --- .github/workflows/checklist.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index adbc898..d330bfa 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -21,7 +21,7 @@ jobs: - name: Checkout code run: jq --version - - name: Test output QUEUE_LOCKED=true + - name: Test output QUEUE_LOCKED=false run: echo "QUEUE_LOCKED=true" >>$GITHUB_ENV - name: Echo QUEUE_LOCKED From 181468ea22a40289d3dcc8e7a314c849677225e4 Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Mon, 8 May 2023 18:46:22 -0700 Subject: [PATCH 059/144] Update checklist.yml --- .github/workflows/checklist.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index d330bfa..2960ce2 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -22,7 +22,7 @@ jobs: run: jq --version - name: Test output QUEUE_LOCKED=false - run: echo "QUEUE_LOCKED=true" >>$GITHUB_ENV + run: echo "QUEUE_LOCKED=false" >>$GITHUB_ENV - name: Echo QUEUE_LOCKED run: echo "${{ env.QUEUE_LOCKED }}" @@ -35,7 +35,9 @@ jobs: if: "! env.QUEUE_LOCKED" run: echo "hi" - + - name: Deploy 3 + if: "!env.QUEUE_LOCKED" + run: echo "hi" # - name: Dump GitHub context From 66248b08cd4ec826caa76249cafcc36799aa008a Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Mon, 8 May 2023 18:47:33 -0700 Subject: [PATCH 060/144] Update checklist.yml --- .github/workflows/checklist.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index 2960ce2..0d9cc13 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -32,11 +32,11 @@ jobs: run: echo "hi" - name: Deploy 2 - if: "! env.QUEUE_LOCKED" + if: "! (env.QUEUE_LOCKED)" run: echo "hi" - name: Deploy 3 - if: "!env.QUEUE_LOCKED" + if: "!(env.QUEUE_LOCKED)" run: echo "hi" From 937da92815bee25dea996710f4b43068ebb52d24 Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Mon, 8 May 2023 18:55:07 -0700 Subject: [PATCH 061/144] Update checklist.yml --- .github/workflows/checklist.yml | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index 0d9cc13..3309eab 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -22,23 +22,15 @@ jobs: run: jq --version - name: Test output QUEUE_LOCKED=false - run: echo "QUEUE_LOCKED=false" >>$GITHUB_ENV + id: check_queue + run: echo "QUEUE_LOCKED=false" >>$GITHUB_OUTPUT - name: Echo QUEUE_LOCKED - run: echo "${{ env.QUEUE_LOCKED }}" + run: echo "${{ steps.check_queue.output.QUEUE_LOCKED }}" - name: Deploy - if: env.QUEUE_LOCKED == 'false' + if: steps.check_queue.output.QUEUE_LOCKED == 'false' run: echo "hi" - - - name: Deploy 2 - if: "! (env.QUEUE_LOCKED)" - run: echo "hi" - - - name: Deploy 3 - if: "!(env.QUEUE_LOCKED)" - run: echo "hi" - # - name: Dump GitHub context # env: From 0368d54b95e536677efd63b026a1971b9ebf0b8e Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Mon, 8 May 2023 18:56:15 -0700 Subject: [PATCH 062/144] Update checklist.yml --- .github/workflows/checklist.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index 3309eab..20e99d9 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -23,7 +23,7 @@ jobs: - name: Test output QUEUE_LOCKED=false id: check_queue - run: echo "QUEUE_LOCKED=false" >>$GITHUB_OUTPUT + run: echo "QUEUE_LOCKED=false" >> $GITHUB_OUTPUT - name: Echo QUEUE_LOCKED run: echo "${{ steps.check_queue.output.QUEUE_LOCKED }}" From e36196f3af1b0fd008e51741f6b5940a346d71ec Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Mon, 8 May 2023 18:57:22 -0700 Subject: [PATCH 063/144] Update checklist.yml --- .github/workflows/checklist.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index 20e99d9..b3421ee 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -23,7 +23,7 @@ jobs: - name: Test output QUEUE_LOCKED=false id: check_queue - run: echo "QUEUE_LOCKED=false" >> $GITHUB_OUTPUT + run: echo "QUEUE_LOCKED='false'" >> $GITHUB_OUTPUT - name: Echo QUEUE_LOCKED run: echo "${{ steps.check_queue.output.QUEUE_LOCKED }}" From d95bafd2cd73fe36c7953c958c2b3986991716d8 Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Mon, 8 May 2023 18:58:53 -0700 Subject: [PATCH 064/144] Update checklist.yml --- .github/workflows/checklist.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index b3421ee..024a853 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -26,10 +26,10 @@ jobs: run: echo "QUEUE_LOCKED='false'" >> $GITHUB_OUTPUT - name: Echo QUEUE_LOCKED - run: echo "${{ steps.check_queue.output.QUEUE_LOCKED }}" + run: echo "${{ steps.check_queue.outputs.QUEUE_LOCKED }}" - name: Deploy - if: steps.check_queue.output.QUEUE_LOCKED == 'false' + if: steps.check_queue.outputs.QUEUE_LOCKED == 'false' run: echo "hi" # - name: Dump GitHub context From 8b10e0d82e6fdf815f0da2e55ab0095138196fbe Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Mon, 8 May 2023 19:00:01 -0700 Subject: [PATCH 065/144] Update checklist.yml --- .github/workflows/checklist.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index 024a853..1c1ae6a 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -23,7 +23,7 @@ jobs: - name: Test output QUEUE_LOCKED=false id: check_queue - run: echo "QUEUE_LOCKED='false'" >> $GITHUB_OUTPUT + run: echo "QUEUE_LOCKED=false" >> $GITHUB_OUTPUT - name: Echo QUEUE_LOCKED run: echo "${{ steps.check_queue.outputs.QUEUE_LOCKED }}" From fe0e0b1106d731db459bdae5492275301853642d Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Mon, 8 May 2023 19:03:40 -0700 Subject: [PATCH 066/144] Update checklist.yml --- .github/workflows/checklist.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index 1c1ae6a..ec4451b 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -29,7 +29,7 @@ jobs: run: echo "${{ steps.check_queue.outputs.QUEUE_LOCKED }}" - name: Deploy - if: steps.check_queue.outputs.QUEUE_LOCKED == 'false' + if: steps.check_queue.outputs.QUEUE_LOCKED == 'true' run: echo "hi" # - name: Dump GitHub context From be1381bbc0aa3af78619a6760edc7f5cc3084677 Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Mon, 8 May 2023 19:04:03 -0700 Subject: [PATCH 067/144] Update checklist.yml --- .github/workflows/checklist.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index ec4451b..a50e910 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -23,13 +23,13 @@ jobs: - name: Test output QUEUE_LOCKED=false id: check_queue - run: echo "QUEUE_LOCKED=false" >> $GITHUB_OUTPUT + run: echo "QUEUE_LOCKED=true" >> $GITHUB_OUTPUT - name: Echo QUEUE_LOCKED run: echo "${{ steps.check_queue.outputs.QUEUE_LOCKED }}" - name: Deploy - if: steps.check_queue.outputs.QUEUE_LOCKED == 'true' + if: steps.check_queue.outputs.QUEUE_LOCKED == 'false' run: echo "hi" # - name: Dump GitHub context From de1657fa725fc813f0029ecd2767b637d8459d7d Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Mon, 8 May 2023 19:09:51 -0700 Subject: [PATCH 068/144] Update checklist.yml --- .github/workflows/checklist.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index a50e910..74ed7c3 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -21,10 +21,12 @@ jobs: - name: Checkout code run: jq --version - - name: Test output QUEUE_LOCKED=false + - name: Test output QUEUE_LOCKED id: check_queue - run: echo "QUEUE_LOCKED=true" >> $GITHUB_OUTPUT - + run: | + echo "QUEUE_LOCKED=true" >> $GITHUB_OUTPUT + echo "QUEUE_LOCKED=false" >> $GITHUB_OUTPUT + - name: Echo QUEUE_LOCKED run: echo "${{ steps.check_queue.outputs.QUEUE_LOCKED }}" From 7192ad109cdfa85755207f100462a2cc57bbabe8 Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Mon, 8 May 2023 19:10:28 -0700 Subject: [PATCH 069/144] Update checklist.yml --- .github/workflows/checklist.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index 74ed7c3..29487ac 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -24,8 +24,8 @@ jobs: - name: Test output QUEUE_LOCKED id: check_queue run: | - echo "QUEUE_LOCKED=true" >> $GITHUB_OUTPUT echo "QUEUE_LOCKED=false" >> $GITHUB_OUTPUT + echo "QUEUE_LOCKED=true" >> $GITHUB_OUTPUT - name: Echo QUEUE_LOCKED run: echo "${{ steps.check_queue.outputs.QUEUE_LOCKED }}" From 807805058d52c8bda5706d93bf0750a7226dc8b0 Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Wed, 17 May 2023 13:48:47 -0700 Subject: [PATCH 070/144] Update renovateConfig.js --- .github/renovateConfig.js | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/.github/renovateConfig.js b/.github/renovateConfig.js index 4838c86..e1d62f5 100644 --- a/.github/renovateConfig.js +++ b/.github/renovateConfig.js @@ -1,5 +1,3 @@ -const FONTAWESOME_TOKEN = process.env.RENOVATE_FONTAWESOME_TOKEN; - module.exports = { "extends": ["config:base"], "stabilityDays": 7, @@ -51,11 +49,4 @@ module.exports = { {"repository": "batbattur/All"} ], "gitAuthor": "Renovate Bot ", - "hostRules": [ - { - "hostType": "npm", - "matchHost": "https://npm.fontawesome.com/", - "token": FONTAWESOME_TOKEN, - } - ], -}; \ No newline at end of file +}; From d938cef1a38e2b6450256e6d5205751e523c6024 Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Wed, 17 May 2023 13:49:18 -0700 Subject: [PATCH 071/144] Delete .npmrc --- .npmrc | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 .npmrc diff --git a/.npmrc b/.npmrc deleted file mode 100644 index f5a4c10..0000000 --- a/.npmrc +++ /dev/null @@ -1,5 +0,0 @@ -always-auth=false - -@fortawesome:registry=https://npm.fontawesome.com/ -//npm.fontawesome.com/:_authToken=${FATOKEN} -//npm.fontawesome.com/:always-auth=true From 370b7d3cff89b19443fe35e60bea8c08d01aa1e4 Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Tue, 6 Jun 2023 12:20:41 -0700 Subject: [PATCH 072/144] Create testintenv.yml --- .github/workflows/testintenv.yml | 64 ++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 .github/workflows/testintenv.yml diff --git a/.github/workflows/testintenv.yml b/.github/workflows/testintenv.yml new file mode 100644 index 0000000..7b0beba --- /dev/null +++ b/.github/workflows/testintenv.yml @@ -0,0 +1,64 @@ +name: TEST +on: + pull_request: + push: + branches: + - master +env: + COMMIT: ${{ github.sha }} + +jobs: + test1: + runs-on: ubuntu-latest + name: checklist_job1 + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: echo COMMIT + run: echo "$COMMIT" + + - name: echo GITHUB_SHA + run: echo "$GITHUB_SHA" + + test2: + runs-on: ubuntu-latest + name: checklist_job2 + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: echo COMMIT + run: echo "$COMMIT" + + - name: echo GITHUB_SHA + run: echo "$GITHUB_SHA" + +# - name: Dump GitHub context +# env: +# GITHUB_CONTEXT: ${{ toJSON(github) }} +# run: echo "$GITHUB_CONTEXT" + +# - name: Print TESTING +# run: | +# echo ${{ github.workflow }} +# echo ${{ github.ref }} +# echo ${{ github.run_number }} +# shell: bash + +# - name: Print github.sha +# run: echo ${{ github.sha }} + +# - name: Print github.event.pull_request.head.sha +# run: echo ${{ github.event.pull_request.head.sha }} + + +# - name: Get head commit sha from the push event and set it to push_head_commit env +# run: echo "push_head_commit=$(echo $COMMITS_JSON | jq ".[length - 2].id")" >> $GITHUB_ENV +# shell: bash +# env: +# COMMITS_JSON: ${{ toJSON(github.event.commits) }} + +# - name: Print sha of the head commit +# run: echo "$push_head_commit" +# shell: bash From aaaf7b248a44923e524d42210e852e0736e93be7 Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Tue, 6 Jun 2023 12:29:09 -0700 Subject: [PATCH 073/144] Update action.yml --- .github/actions/setup-ci-env-vars/action.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/actions/setup-ci-env-vars/action.yml b/.github/actions/setup-ci-env-vars/action.yml index 54619be..14de739 100644 --- a/.github/actions/setup-ci-env-vars/action.yml +++ b/.github/actions/setup-ci-env-vars/action.yml @@ -7,3 +7,7 @@ runs: GITHUB_CONTEXT: ${{ toJSON(github) }} run: echo "$GITHUB_CONTEXT" shell: bash + + - name: echo COMMIT + run: echo "$COMMIT" + shell: bash From 72fc22271a8c613b2e921537fe6bb3a291e9b464 Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Tue, 6 Jun 2023 12:31:03 -0700 Subject: [PATCH 074/144] Update testintenv.yml --- .github/workflows/testintenv.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/testintenv.yml b/.github/workflows/testintenv.yml index 7b0beba..f74b270 100644 --- a/.github/workflows/testintenv.yml +++ b/.github/workflows/testintenv.yml @@ -21,6 +21,9 @@ jobs: - name: echo GITHUB_SHA run: echo "$GITHUB_SHA" + - name: echo chommit from composite action + uses: ./.github/actions/setup-ci-env-vars + test2: runs-on: ubuntu-latest name: checklist_job2 @@ -34,6 +37,11 @@ jobs: - name: echo GITHUB_SHA run: echo "$GITHUB_SHA" + - name: echo chommit from composite action + uses: ./.github/actions/setup-ci-env-vars + + + # - name: Dump GitHub context # env: # GITHUB_CONTEXT: ${{ toJSON(github) }} From b3439dc49c2e6af166b089d00acc74df0aeeac85 Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Tue, 6 Jun 2023 12:32:16 -0700 Subject: [PATCH 075/144] Update action.yml --- .github/actions/setup-ci-env-vars/action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/actions/setup-ci-env-vars/action.yml b/.github/actions/setup-ci-env-vars/action.yml index 14de739..2803567 100644 --- a/.github/actions/setup-ci-env-vars/action.yml +++ b/.github/actions/setup-ci-env-vars/action.yml @@ -1,6 +1,7 @@ name: Set CI Environment Variables description: Set CI Environment Variables runs: + using: 'composite' steps: - name: Dump GitHub context env: From 8a087087f77c63df17fb24beb3b3005dcaa5944e Mon Sep 17 00:00:00 2001 From: batbattur Date: Tue, 6 Jun 2023 13:38:00 -0700 Subject: [PATCH 076/144] test workflow inputs --- .github/workflows/testintenv.yml | 27 +++++++++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) diff --git a/.github/workflows/testintenv.yml b/.github/workflows/testintenv.yml index f74b270..72609a4 100644 --- a/.github/workflows/testintenv.yml +++ b/.github/workflows/testintenv.yml @@ -4,6 +4,17 @@ on: push: branches: - master + workflow_dispatch: + inputs: + fast_deploy: + description: 'Fast deploy: skips psalm and tests.' + required: true + default: 'false' + type: choice + options: + - 'false' + - 'true' + env: COMMIT: ${{ github.sha }} @@ -21,8 +32,20 @@ jobs: - name: echo GITHUB_SHA run: echo "$GITHUB_SHA" - - name: echo chommit from composite action - uses: ./.github/actions/setup-ci-env-vars + - name: echo inputs.fast_deploy + if: github.event_name == 'workflow_dispatch' && inputs.fast_deploy + run: echo "${{ inputs.build_id }}" + + - name: echo inputs.fast_deploy true + if: github.event_name == 'workflow_dispatch' && inputs.fast_deploy == 'true' + run: echo "${{ inputs.build_id }}" + + + - name: echo inputs.fast_deploy false + if: github.event_name == 'workflow_dispatch' && inputs.fast_deploy == 'false' + run: echo "${{ inputs.build_id }}" + + test2: runs-on: ubuntu-latest From 69c307ac228db98b8c447ced53c61bfb7b9bc50d Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 5 Jul 2023 10:05:49 -0700 Subject: [PATCH 077/144] testing security updates --- .github/renovateConfig.js | 19 +- .github/workflows/renovate.yml | 3 - .gitignore | 1 + Testing/package.json | 15 ++ Testing/pnpm-lock.yaml | 359 +++++++++++++++++++++++++++++++++ package.json | 2 - pnpm-lock.yaml | 39 +--- 7 files changed, 387 insertions(+), 51 deletions(-) create mode 100644 .gitignore create mode 100644 Testing/package.json create mode 100644 Testing/pnpm-lock.yaml diff --git a/.github/renovateConfig.js b/.github/renovateConfig.js index e1d62f5..0bb7376 100644 --- a/.github/renovateConfig.js +++ b/.github/renovateConfig.js @@ -1,28 +1,17 @@ module.exports = { "extends": ["config:base"], "stabilityDays": 7, - "timezone": "America/Los_Angeles", - "schedule": ["after 9pm and before 12am every weekday"], - "prHourlyLimit": 1, - "prConcurrentLimit": 1, "labels": ["dependencies", "renovate"], "git-submodules": { "enabled": true }, "dependencyDashboard": true, + "dependencyDashboardOSVVulnerabilitySummary": "all", + "osvVulnerabilityAlerts": true, "major": { "dependencyDashboardApproval": true }, "packageRules": [ - { - "matchPackageNames": ["aws/aws-sdk-php", "rector/rector"], - "matchUpdateTypes": ["patch"], - "enabled": false - }, - { - "matchPackageNames": ["react-commerce"], - "prPriority": 2 - }, { "matchDepTypes": ["dependencies", "require"], "prPriority": 1 @@ -36,8 +25,8 @@ module.exports = { "enabledManagers": ["npm", "composer", "git-submodules", "github-actions"], "force": { "constraints": { - "node": "14.20.1", - "pnpm": "7.27.0" + "node": "16.14.0", + "pnpm": "8.5.0" } }, "cloneSubmodules": true, diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index 86bf981..68e6e22 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -8,8 +8,6 @@ on: jobs: renovate: runs-on: ubuntu-latest - env: - FATOKEN: ${{ secrets.FONT_AWESOME_TOKEN }} steps: - name: Checkout uses: actions/checkout@v3 @@ -28,4 +26,3 @@ jobs: token: ${{ secrets.RENOVATE_TOKEN }} env: LOG_LEVEL: 'debug' - RENOVATE_FONTAWESOME_TOKEN: ${{ secrets.FONT_AWESOME_TOKEN }} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b512c09 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +node_modules \ No newline at end of file diff --git a/Testing/package.json b/Testing/package.json new file mode 100644 index 0000000..f74935c --- /dev/null +++ b/Testing/package.json @@ -0,0 +1,15 @@ +{ + "name": "testing", + "version": "1.0.0", + "description": "", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "author": "", + "license": "ISC", + "devDependencies": { + "chalk": "^4.0.0", + "@octokit/rest": "^17.1.0" + } +} diff --git a/Testing/pnpm-lock.yaml b/Testing/pnpm-lock.yaml new file mode 100644 index 0000000..0acf8b6 --- /dev/null +++ b/Testing/pnpm-lock.yaml @@ -0,0 +1,359 @@ +lockfileVersion: '6.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +devDependencies: + '@octokit/rest': + specifier: ^17.1.0 + version: 17.1.0 + chalk: + specifier: ^4.0.0 + version: 4.0.0 + +packages: + + /@octokit/auth-token@2.5.0: + resolution: {integrity: sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g==} + dependencies: + '@octokit/types': 6.41.0 + dev: true + + /@octokit/core@2.5.4: + resolution: {integrity: sha512-HCp8yKQfTITYK+Nd09MHzAlP1v3Ii/oCohv0/TW9rhSLvzb98BOVs2QmVYuloE6a3l6LsfyGIwb6Pc4ycgWlIQ==} + dependencies: + '@octokit/auth-token': 2.5.0 + '@octokit/graphql': 4.8.0 + '@octokit/request': 5.6.3 + '@octokit/types': 5.5.0 + before-after-hook: 2.2.3 + universal-user-agent: 5.0.0 + transitivePeerDependencies: + - encoding + dev: true + + /@octokit/endpoint@6.0.12: + resolution: {integrity: sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA==} + dependencies: + '@octokit/types': 6.41.0 + is-plain-object: 5.0.0 + universal-user-agent: 6.0.0 + dev: true + + /@octokit/graphql@4.8.0: + resolution: {integrity: sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==} + dependencies: + '@octokit/request': 5.6.3 + '@octokit/types': 6.41.0 + universal-user-agent: 6.0.0 + transitivePeerDependencies: + - encoding + dev: true + + /@octokit/openapi-types@12.11.0: + resolution: {integrity: sha512-VsXyi8peyRq9PqIz/tpqiL2w3w80OgVMwBHltTml3LmVvXiphgeqmY9mvBw9Wu7e0QWk/fqD37ux8yP5uVekyQ==} + dev: true + + /@octokit/plugin-paginate-rest@2.21.3(@octokit/core@2.5.4): + resolution: {integrity: sha512-aCZTEf0y2h3OLbrgKkrfFdjRL6eSOo8komneVQJnYecAxIej7Bafor2xhuDJOIFau4pk0i/P28/XgtbyPF0ZHw==} + peerDependencies: + '@octokit/core': '>=2' + dependencies: + '@octokit/core': 2.5.4 + '@octokit/types': 6.41.0 + dev: true + + /@octokit/plugin-request-log@1.0.4(@octokit/core@2.5.4): + resolution: {integrity: sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==} + peerDependencies: + '@octokit/core': '>=3' + dependencies: + '@octokit/core': 2.5.4 + dev: true + + /@octokit/plugin-rest-endpoint-methods@3.17.0: + resolution: {integrity: sha512-NFV3vq7GgoO2TrkyBRUOwflkfTYkFKS0tLAPym7RNpkwLCttqShaEGjthOsPEEL+7LFcYv3mU24+F2yVd3npmg==} + dependencies: + '@octokit/types': 4.1.10 + deprecation: 2.3.1 + dev: true + + /@octokit/request-error@2.1.0: + resolution: {integrity: sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==} + dependencies: + '@octokit/types': 6.41.0 + deprecation: 2.3.1 + once: 1.4.0 + dev: true + + /@octokit/request@5.6.3: + resolution: {integrity: sha512-bFJl0I1KVc9jYTe9tdGGpAMPy32dLBXXo1dS/YwSCTL/2nd9XeHsY616RE3HPXDVk+a+dBuzyz5YdlXwcDTr2A==} + dependencies: + '@octokit/endpoint': 6.0.12 + '@octokit/request-error': 2.1.0 + '@octokit/types': 6.41.0 + is-plain-object: 5.0.0 + node-fetch: 2.6.12 + universal-user-agent: 6.0.0 + transitivePeerDependencies: + - encoding + dev: true + + /@octokit/rest@17.1.0: + resolution: {integrity: sha512-L5YtpxHZSHZCh2xETbzxz8clBGmcpT+5e78JLZQ+VfuHrHJ1J/r+R2PGwKHwClUEECTeWFMMdAtIik+OCkANBg==} + dependencies: + '@octokit/core': 2.5.4 + '@octokit/plugin-paginate-rest': 2.21.3(@octokit/core@2.5.4) + '@octokit/plugin-request-log': 1.0.4(@octokit/core@2.5.4) + '@octokit/plugin-rest-endpoint-methods': 3.17.0 + transitivePeerDependencies: + - encoding + dev: true + + /@octokit/types@4.1.10: + resolution: {integrity: sha512-/wbFy1cUIE5eICcg0wTKGXMlKSbaAxEr00qaBXzscLXpqhcwgXeS6P8O0pkysBhRfyjkKjJaYrvR1ExMO5eOXQ==} + dependencies: + '@types/node': 20.3.3 + dev: true + + /@octokit/types@5.5.0: + resolution: {integrity: sha512-UZ1pErDue6bZNjYOotCNveTXArOMZQFG6hKJfOnGnulVCMcVVi7YIIuuR4WfBhjo7zgpmzn/BkPDnUXtNx+PcQ==} + dependencies: + '@types/node': 20.3.3 + dev: true + + /@octokit/types@6.41.0: + resolution: {integrity: sha512-eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg==} + dependencies: + '@octokit/openapi-types': 12.11.0 + dev: true + + /@types/node@20.3.3: + resolution: {integrity: sha512-wheIYdr4NYML61AjC8MKj/2jrR/kDQri/CIpVoZwldwhnIrD/j9jIU5bJ8yBKuB2VhpFV7Ab6G2XkBjv9r9Zzw==} + dev: true + + /ansi-styles@4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} + dependencies: + color-convert: 2.0.1 + dev: true + + /before-after-hook@2.2.3: + resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==} + dev: true + + /chalk@4.0.0: + resolution: {integrity: sha512-N9oWFcegS0sFr9oh1oz2d7Npos6vNoWW9HvtCg5N1KRFpUhaAhvTv5Y58g880fZaEYSNm3qDz8SU1UrGvp+n7A==} + engines: {node: '>=10'} + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + dev: true + + /color-convert@2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + dependencies: + color-name: 1.1.4 + dev: true + + /color-name@1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + dev: true + + /cross-spawn@6.0.5: + resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==} + engines: {node: '>=4.8'} + dependencies: + nice-try: 1.0.5 + path-key: 2.0.1 + semver: 5.7.1 + shebang-command: 1.2.0 + which: 1.3.1 + dev: true + + /deprecation@2.3.1: + resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==} + dev: true + + /end-of-stream@1.4.4: + resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} + dependencies: + once: 1.4.0 + dev: true + + /execa@1.0.0: + resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==} + engines: {node: '>=6'} + dependencies: + cross-spawn: 6.0.5 + get-stream: 4.1.0 + is-stream: 1.1.0 + npm-run-path: 2.0.2 + p-finally: 1.0.0 + signal-exit: 3.0.7 + strip-eof: 1.0.0 + dev: true + + /get-stream@4.1.0: + resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==} + engines: {node: '>=6'} + dependencies: + pump: 3.0.0 + dev: true + + /has-flag@4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} + dev: true + + /is-plain-object@5.0.0: + resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} + engines: {node: '>=0.10.0'} + dev: true + + /is-stream@1.1.0: + resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==} + engines: {node: '>=0.10.0'} + dev: true + + /isexe@2.0.0: + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + dev: true + + /macos-release@2.5.1: + resolution: {integrity: sha512-DXqXhEM7gW59OjZO8NIjBCz9AQ1BEMrfiOAl4AYByHCtVHRF4KoGNO8mqQeM8lRCtQe/UnJ4imO/d2HdkKsd+A==} + engines: {node: '>=6'} + dev: true + + /nice-try@1.0.5: + resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==} + dev: true + + /node-fetch@2.6.12: + resolution: {integrity: sha512-C/fGU2E8ToujUivIO0H+tpQ6HWo4eEmchoPIoXtxCrVghxdKq+QOHqEZW7tuP3KlV3bC8FRMO5nMCC7Zm1VP6g==} + engines: {node: 4.x || >=6.0.0} + peerDependencies: + encoding: ^0.1.0 + peerDependenciesMeta: + encoding: + optional: true + dependencies: + whatwg-url: 5.0.0 + dev: true + + /npm-run-path@2.0.2: + resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==} + engines: {node: '>=4'} + dependencies: + path-key: 2.0.1 + dev: true + + /once@1.4.0: + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + dependencies: + wrappy: 1.0.2 + dev: true + + /os-name@3.1.0: + resolution: {integrity: sha512-h8L+8aNjNcMpo/mAIBPn5PXCM16iyPGjHNWo6U1YO8sJTMHtEtyczI6QJnLoplswm6goopQkqc7OAnjhWcugVg==} + engines: {node: '>=6'} + dependencies: + macos-release: 2.5.1 + windows-release: 3.3.3 + dev: true + + /p-finally@1.0.0: + resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==} + engines: {node: '>=4'} + dev: true + + /path-key@2.0.1: + resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==} + engines: {node: '>=4'} + dev: true + + /pump@3.0.0: + resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} + dependencies: + end-of-stream: 1.4.4 + once: 1.4.0 + dev: true + + /semver@5.7.1: + resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==} + hasBin: true + dev: true + + /shebang-command@1.2.0: + resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} + engines: {node: '>=0.10.0'} + dependencies: + shebang-regex: 1.0.0 + dev: true + + /shebang-regex@1.0.0: + resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} + engines: {node: '>=0.10.0'} + dev: true + + /signal-exit@3.0.7: + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + dev: true + + /strip-eof@1.0.0: + resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==} + engines: {node: '>=0.10.0'} + dev: true + + /supports-color@7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} + dependencies: + has-flag: 4.0.0 + dev: true + + /tr46@0.0.3: + resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} + dev: true + + /universal-user-agent@5.0.0: + resolution: {integrity: sha512-B5TPtzZleXyPrUMKCpEHFmVhMN6EhmJYjG5PQna9s7mXeSqGTLap4OpqLl5FCEFUI3UBmllkETwKf/db66Y54Q==} + dependencies: + os-name: 3.1.0 + dev: true + + /universal-user-agent@6.0.0: + resolution: {integrity: sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==} + dev: true + + /webidl-conversions@3.0.1: + resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} + dev: true + + /whatwg-url@5.0.0: + resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} + dependencies: + tr46: 0.0.3 + webidl-conversions: 3.0.1 + dev: true + + /which@1.3.1: + resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} + hasBin: true + dependencies: + isexe: 2.0.0 + dev: true + + /windows-release@3.3.3: + resolution: {integrity: sha512-OSOGH1QYiW5yVor9TtmXKQvt2vjQqbYS+DqmsZw+r7xDwLXEeT3JGW0ZppFmHx4diyXmxt238KFR3N9jzevBRg==} + engines: {node: '>=6'} + dependencies: + execa: 1.0.0 + dev: true + + /wrappy@1.0.2: + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + dev: true diff --git a/package.json b/package.json index 6ea1a89..db2c8e8 100644 --- a/package.json +++ b/package.json @@ -10,8 +10,6 @@ "author": "", "license": "ISC", "dependencies": { - "@fortawesome/fontawesome-svg-core": "^6.4.0", - "@fortawesome/pro-solid-svg-icons": "^6.4.0", "shelljs": "0.3.0" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index cf8f2eb..e8ed396 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,40 +1,17 @@ -lockfileVersion: 5.4 +lockfileVersion: '6.0' -specifiers: - '@fortawesome/fontawesome-svg-core': ^6.4.0 - '@fortawesome/pro-solid-svg-icons': ^6.4.0 - shelljs: 0.3.0 +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false dependencies: - '@fortawesome/fontawesome-svg-core': 6.4.0 - '@fortawesome/pro-solid-svg-icons': 6.4.0 - shelljs: 0.3.0 + shelljs: + specifier: 0.3.0 + version: 0.3.0 packages: - /@fortawesome/fontawesome-common-types/6.4.0: - resolution: {integrity: sha512-HNii132xfomg5QVZw0HwXXpN22s7VBHQBv9CeOu9tfJnhsWQNd2lmTNi8CSrnw5B+5YOmzu1UoPAyxaXsJ6RgQ==, tarball: '@fortawesome/fontawesome-common-types/-/6.4.0/fontawesome-common-types-6.4.0.tgz'} - engines: {node: '>=6'} - requiresBuild: true - dev: false - - /@fortawesome/fontawesome-svg-core/6.4.0: - resolution: {integrity: sha512-Bertv8xOiVELz5raB2FlXDPKt+m94MQ3JgDfsVbrqNpLU9+UE2E18GKjLKw+d3XbeYPqg1pzyQKGsrzbw+pPaw==, tarball: '@fortawesome/fontawesome-svg-core/-/6.4.0/fontawesome-svg-core-6.4.0.tgz'} - engines: {node: '>=6'} - requiresBuild: true - dependencies: - '@fortawesome/fontawesome-common-types': 6.4.0 - dev: false - - /@fortawesome/pro-solid-svg-icons/6.4.0: - resolution: {integrity: sha512-R54gxoqHAZdlSCmE7JYpQKT64Jgw59nQIyabT6oh3jsb70O4A3ea+ojVBCKsvoW4UhYe1IOXS1o4PqDEW8Y7Tg==, tarball: '@fortawesome/pro-solid-svg-icons/-/6.4.0/pro-solid-svg-icons-6.4.0.tgz'} - engines: {node: '>=6'} - requiresBuild: true - dependencies: - '@fortawesome/fontawesome-common-types': 6.4.0 - dev: false - - /shelljs/0.3.0: + /shelljs@0.3.0: resolution: {integrity: sha512-Ny0KN4dyT8ZSCE0frtcbAJGoM/HTArpyPkeli1/00aYfm0sbD/Gk/4x7N2DP9QKGpBsiQH7n6rpm1L79RtviEQ==} engines: {node: '>=0.8.0'} hasBin: true From bf03c3d79ce962a95854bdafca7f53281f4efaa9 Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 5 Jul 2023 10:06:50 -0700 Subject: [PATCH 078/144] use latest renovate --- .github/workflows/renovate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index 68e6e22..428962a 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -20,7 +20,7 @@ jobs: # git submodule update --init --recursive - name: Self-hosted Renovate - uses: renovatebot/github-action@v36.0.3 + uses: renovatebot/github-action@v38.1.2 with: configurationFile: .github/renovateConfig.js token: ${{ secrets.RENOVATE_TOKEN }} From fe9bcb3f434fc61b70249eea80b9bec73dec0b3a Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 5 Jul 2023 10:47:45 -0700 Subject: [PATCH 079/144] use package-lock.json --- Testing/package-lock.json | 1304 +++++++++++++++++++++++++++++++++++++ 1 file changed, 1304 insertions(+) create mode 100644 Testing/package-lock.json diff --git a/Testing/package-lock.json b/Testing/package-lock.json new file mode 100644 index 0000000..de23a27 --- /dev/null +++ b/Testing/package-lock.json @@ -0,0 +1,1304 @@ +{ + "name": "testing", + "version": "1.0.0", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "testing", + "version": "1.0.0", + "license": "ISC", + "devDependencies": { + "@octokit/rest": "^17.1.0", + "chalk": "^4.0.0" + } + }, + "node_modules/@octokit/auth-token": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-3.0.4.tgz", + "integrity": "sha512-TWFX7cZF2LXoCvdmJWY7XVPi74aSY0+FfBZNSXEXFkMpjcqsQwDSYVv5FhRFaI0V1ECnwbz4j59T/G+rXNWaIQ==", + "dev": true, + "peer": true, + "engines": { + "node": ">= 14" + } + }, + "node_modules/@octokit/core": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@octokit/core/-/core-4.2.4.tgz", + "integrity": "sha512-rYKilwgzQ7/imScn3M9/pFfUf4I1AZEH3KhyJmtPdE2zfaXAn2mFfUy4FbKewzc2We5y/LlKLj36fWJLKC2SIQ==", + "dev": true, + "peer": true, + "dependencies": { + "@octokit/auth-token": "^3.0.0", + "@octokit/graphql": "^5.0.0", + "@octokit/request": "^6.0.0", + "@octokit/request-error": "^3.0.0", + "@octokit/types": "^9.0.0", + "before-after-hook": "^2.2.0", + "universal-user-agent": "^6.0.0" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/@octokit/endpoint": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-7.0.6.tgz", + "integrity": "sha512-5L4fseVRUsDFGR00tMWD/Trdeeihn999rTMGRMC1G/Ldi1uWlWJzI98H4Iak5DB/RVvQuyMYKqSK/R6mbSOQyg==", + "dev": true, + "peer": true, + "dependencies": { + "@octokit/types": "^9.0.0", + "is-plain-object": "^5.0.0", + "universal-user-agent": "^6.0.0" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/@octokit/graphql": { + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-5.0.6.tgz", + "integrity": "sha512-Fxyxdy/JH0MnIB5h+UQ3yCoh1FG4kWXfFKkpWqjZHw/p+Kc8Y44Hu/kCgNBT6nU1shNumEchmW/sUO1JuQnPcw==", + "dev": true, + "peer": true, + "dependencies": { + "@octokit/request": "^6.0.0", + "@octokit/types": "^9.0.0", + "universal-user-agent": "^6.0.0" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/@octokit/openapi-types": { + "version": "18.0.0", + "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-18.0.0.tgz", + "integrity": "sha512-V8GImKs3TeQRxRtXFpG2wl19V7444NIOTDF24AWuIbmNaNYOQMWRbjcGDXV5B+0n887fgDcuMNOmlul+k+oJtw==", + "dev": true, + "peer": true + }, + "node_modules/@octokit/plugin-paginate-rest": { + "version": "2.21.3", + "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.21.3.tgz", + "integrity": "sha512-aCZTEf0y2h3OLbrgKkrfFdjRL6eSOo8komneVQJnYecAxIej7Bafor2xhuDJOIFau4pk0i/P28/XgtbyPF0ZHw==", + "dev": true, + "dependencies": { + "@octokit/types": "^6.40.0" + }, + "peerDependencies": { + "@octokit/core": ">=2" + } + }, + "node_modules/@octokit/plugin-paginate-rest/node_modules/@octokit/openapi-types": { + "version": "12.11.0", + "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-12.11.0.tgz", + "integrity": "sha512-VsXyi8peyRq9PqIz/tpqiL2w3w80OgVMwBHltTml3LmVvXiphgeqmY9mvBw9Wu7e0QWk/fqD37ux8yP5uVekyQ==", + "dev": true + }, + "node_modules/@octokit/plugin-paginate-rest/node_modules/@octokit/types": { + "version": "6.41.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-6.41.0.tgz", + "integrity": "sha512-eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg==", + "dev": true, + "dependencies": { + "@octokit/openapi-types": "^12.11.0" + } + }, + "node_modules/@octokit/plugin-request-log": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@octokit/plugin-request-log/-/plugin-request-log-1.0.4.tgz", + "integrity": "sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==", + "dev": true, + "peerDependencies": { + "@octokit/core": ">=3" + } + }, + "node_modules/@octokit/plugin-rest-endpoint-methods": { + "version": "3.17.0", + "resolved": "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-3.17.0.tgz", + "integrity": "sha512-NFV3vq7GgoO2TrkyBRUOwflkfTYkFKS0tLAPym7RNpkwLCttqShaEGjthOsPEEL+7LFcYv3mU24+F2yVd3npmg==", + "dev": true, + "dependencies": { + "@octokit/types": "^4.1.6", + "deprecation": "^2.3.1" + } + }, + "node_modules/@octokit/plugin-rest-endpoint-methods/node_modules/@octokit/types": { + "version": "4.1.10", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-4.1.10.tgz", + "integrity": "sha512-/wbFy1cUIE5eICcg0wTKGXMlKSbaAxEr00qaBXzscLXpqhcwgXeS6P8O0pkysBhRfyjkKjJaYrvR1ExMO5eOXQ==", + "dev": true, + "dependencies": { + "@types/node": ">= 8" + } + }, + "node_modules/@octokit/request": { + "version": "6.2.8", + "resolved": "https://registry.npmjs.org/@octokit/request/-/request-6.2.8.tgz", + "integrity": "sha512-ow4+pkVQ+6XVVsekSYBzJC0VTVvh/FCTUUgTsboGq+DTeWdyIFV8WSCdo0RIxk6wSkBTHqIK1mYuY7nOBXOchw==", + "dev": true, + "peer": true, + "dependencies": { + "@octokit/endpoint": "^7.0.0", + "@octokit/request-error": "^3.0.0", + "@octokit/types": "^9.0.0", + "is-plain-object": "^5.0.0", + "node-fetch": "^2.6.7", + "universal-user-agent": "^6.0.0" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/@octokit/request-error": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-3.0.3.tgz", + "integrity": "sha512-crqw3V5Iy2uOU5Np+8M/YexTlT8zxCfI+qu+LxUB7SZpje4Qmx3mub5DfEKSO8Ylyk0aogi6TYdf6kxzh2BguQ==", + "dev": true, + "peer": true, + "dependencies": { + "@octokit/types": "^9.0.0", + "deprecation": "^2.0.0", + "once": "^1.4.0" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/@octokit/rest": { + "version": "17.11.2", + "resolved": "https://registry.npmjs.org/@octokit/rest/-/rest-17.11.2.tgz", + "integrity": "sha512-4jTmn8WossTUaLfNDfXk4fVJgbz5JgZE8eCs4BvIb52lvIH8rpVMD1fgRCrHbSd6LRPE5JFZSfAEtszrOq3ZFQ==", + "dev": true, + "dependencies": { + "@octokit/core": "^2.4.3", + "@octokit/plugin-paginate-rest": "^2.2.0", + "@octokit/plugin-request-log": "^1.0.0", + "@octokit/plugin-rest-endpoint-methods": "3.17.0" + } + }, + "node_modules/@octokit/rest/node_modules/@octokit/auth-token": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-2.5.0.tgz", + "integrity": "sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g==", + "dev": true, + "dependencies": { + "@octokit/types": "^6.0.3" + } + }, + "node_modules/@octokit/rest/node_modules/@octokit/auth-token/node_modules/@octokit/types": { + "version": "6.41.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-6.41.0.tgz", + "integrity": "sha512-eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg==", + "dev": true, + "dependencies": { + "@octokit/openapi-types": "^12.11.0" + } + }, + "node_modules/@octokit/rest/node_modules/@octokit/core": { + "version": "2.5.4", + "resolved": "https://registry.npmjs.org/@octokit/core/-/core-2.5.4.tgz", + "integrity": "sha512-HCp8yKQfTITYK+Nd09MHzAlP1v3Ii/oCohv0/TW9rhSLvzb98BOVs2QmVYuloE6a3l6LsfyGIwb6Pc4ycgWlIQ==", + "dev": true, + "dependencies": { + "@octokit/auth-token": "^2.4.0", + "@octokit/graphql": "^4.3.1", + "@octokit/request": "^5.4.0", + "@octokit/types": "^5.0.0", + "before-after-hook": "^2.1.0", + "universal-user-agent": "^5.0.0" + } + }, + "node_modules/@octokit/rest/node_modules/@octokit/core/node_modules/universal-user-agent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-5.0.0.tgz", + "integrity": "sha512-B5TPtzZleXyPrUMKCpEHFmVhMN6EhmJYjG5PQna9s7mXeSqGTLap4OpqLl5FCEFUI3UBmllkETwKf/db66Y54Q==", + "dev": true, + "dependencies": { + "os-name": "^3.1.0" + } + }, + "node_modules/@octokit/rest/node_modules/@octokit/endpoint": { + "version": "6.0.12", + "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-6.0.12.tgz", + "integrity": "sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA==", + "dev": true, + "dependencies": { + "@octokit/types": "^6.0.3", + "is-plain-object": "^5.0.0", + "universal-user-agent": "^6.0.0" + } + }, + "node_modules/@octokit/rest/node_modules/@octokit/endpoint/node_modules/@octokit/types": { + "version": "6.41.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-6.41.0.tgz", + "integrity": "sha512-eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg==", + "dev": true, + "dependencies": { + "@octokit/openapi-types": "^12.11.0" + } + }, + "node_modules/@octokit/rest/node_modules/@octokit/graphql": { + "version": "4.8.0", + "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-4.8.0.tgz", + "integrity": "sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==", + "dev": true, + "dependencies": { + "@octokit/request": "^5.6.0", + "@octokit/types": "^6.0.3", + "universal-user-agent": "^6.0.0" + } + }, + "node_modules/@octokit/rest/node_modules/@octokit/graphql/node_modules/@octokit/types": { + "version": "6.41.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-6.41.0.tgz", + "integrity": "sha512-eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg==", + "dev": true, + "dependencies": { + "@octokit/openapi-types": "^12.11.0" + } + }, + "node_modules/@octokit/rest/node_modules/@octokit/openapi-types": { + "version": "12.11.0", + "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-12.11.0.tgz", + "integrity": "sha512-VsXyi8peyRq9PqIz/tpqiL2w3w80OgVMwBHltTml3LmVvXiphgeqmY9mvBw9Wu7e0QWk/fqD37ux8yP5uVekyQ==", + "dev": true + }, + "node_modules/@octokit/rest/node_modules/@octokit/request": { + "version": "5.6.3", + "resolved": "https://registry.npmjs.org/@octokit/request/-/request-5.6.3.tgz", + "integrity": "sha512-bFJl0I1KVc9jYTe9tdGGpAMPy32dLBXXo1dS/YwSCTL/2nd9XeHsY616RE3HPXDVk+a+dBuzyz5YdlXwcDTr2A==", + "dev": true, + "dependencies": { + "@octokit/endpoint": "^6.0.1", + "@octokit/request-error": "^2.1.0", + "@octokit/types": "^6.16.1", + "is-plain-object": "^5.0.0", + "node-fetch": "^2.6.7", + "universal-user-agent": "^6.0.0" + } + }, + "node_modules/@octokit/rest/node_modules/@octokit/request-error": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-2.1.0.tgz", + "integrity": "sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==", + "dev": true, + "dependencies": { + "@octokit/types": "^6.0.3", + "deprecation": "^2.0.0", + "once": "^1.4.0" + } + }, + "node_modules/@octokit/rest/node_modules/@octokit/request-error/node_modules/@octokit/types": { + "version": "6.41.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-6.41.0.tgz", + "integrity": "sha512-eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg==", + "dev": true, + "dependencies": { + "@octokit/openapi-types": "^12.11.0" + } + }, + "node_modules/@octokit/rest/node_modules/@octokit/request/node_modules/@octokit/types": { + "version": "6.41.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-6.41.0.tgz", + "integrity": "sha512-eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg==", + "dev": true, + "dependencies": { + "@octokit/openapi-types": "^12.11.0" + } + }, + "node_modules/@octokit/rest/node_modules/@octokit/types": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-5.5.0.tgz", + "integrity": "sha512-UZ1pErDue6bZNjYOotCNveTXArOMZQFG6hKJfOnGnulVCMcVVi7YIIuuR4WfBhjo7zgpmzn/BkPDnUXtNx+PcQ==", + "dev": true, + "dependencies": { + "@types/node": ">= 8" + } + }, + "node_modules/@octokit/types": { + "version": "9.3.2", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-9.3.2.tgz", + "integrity": "sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA==", + "dev": true, + "peer": true, + "dependencies": { + "@octokit/openapi-types": "^18.0.0" + } + }, + "node_modules/@types/node": { + "version": "20.3.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.3.3.tgz", + "integrity": "sha512-wheIYdr4NYML61AjC8MKj/2jrR/kDQri/CIpVoZwldwhnIrD/j9jIU5bJ8yBKuB2VhpFV7Ab6G2XkBjv9r9Zzw==", + "dev": true + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/before-after-hook": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.2.3.tgz", + "integrity": "sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==", + "dev": true + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/deprecation": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz", + "integrity": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==", + "dev": true + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "dev": true, + "dependencies": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dev": true, + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-plain-object": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/macos-release": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/macos-release/-/macos-release-2.5.1.tgz", + "integrity": "sha512-DXqXhEM7gW59OjZO8NIjBCz9AQ1BEMrfiOAl4AYByHCtVHRF4KoGNO8mqQeM8lRCtQe/UnJ4imO/d2HdkKsd+A==", + "dev": true, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "dev": true + }, + "node_modules/node-fetch": { + "version": "2.6.12", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.12.tgz", + "integrity": "sha512-C/fGU2E8ToujUivIO0H+tpQ6HWo4eEmchoPIoXtxCrVghxdKq+QOHqEZW7tuP3KlV3bC8FRMO5nMCC7Zm1VP6g==", + "dev": true, + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "dev": true, + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/os-name": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/os-name/-/os-name-3.1.0.tgz", + "integrity": "sha512-h8L+8aNjNcMpo/mAIBPn5PXCM16iyPGjHNWo6U1YO8sJTMHtEtyczI6QJnLoplswm6goopQkqc7OAnjhWcugVg==", + "dev": true, + "dependencies": { + "macos-release": "^2.2.0", + "windows-release": "^3.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dev": true, + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "dev": true + }, + "node_modules/universal-user-agent": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.0.tgz", + "integrity": "sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==", + "dev": true + }, + "node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "dev": true + }, + "node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dev": true, + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/windows-release": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/windows-release/-/windows-release-3.3.3.tgz", + "integrity": "sha512-OSOGH1QYiW5yVor9TtmXKQvt2vjQqbYS+DqmsZw+r7xDwLXEeT3JGW0ZppFmHx4diyXmxt238KFR3N9jzevBRg==", + "dev": true, + "dependencies": { + "execa": "^1.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + } + }, + "dependencies": { + "@octokit/auth-token": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-3.0.4.tgz", + "integrity": "sha512-TWFX7cZF2LXoCvdmJWY7XVPi74aSY0+FfBZNSXEXFkMpjcqsQwDSYVv5FhRFaI0V1ECnwbz4j59T/G+rXNWaIQ==", + "dev": true, + "peer": true + }, + "@octokit/core": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@octokit/core/-/core-4.2.4.tgz", + "integrity": "sha512-rYKilwgzQ7/imScn3M9/pFfUf4I1AZEH3KhyJmtPdE2zfaXAn2mFfUy4FbKewzc2We5y/LlKLj36fWJLKC2SIQ==", + "dev": true, + "peer": true, + "requires": { + "@octokit/auth-token": "^3.0.0", + "@octokit/graphql": "^5.0.0", + "@octokit/request": "^6.0.0", + "@octokit/request-error": "^3.0.0", + "@octokit/types": "^9.0.0", + "before-after-hook": "^2.2.0", + "universal-user-agent": "^6.0.0" + } + }, + "@octokit/endpoint": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-7.0.6.tgz", + "integrity": "sha512-5L4fseVRUsDFGR00tMWD/Trdeeihn999rTMGRMC1G/Ldi1uWlWJzI98H4Iak5DB/RVvQuyMYKqSK/R6mbSOQyg==", + "dev": true, + "peer": true, + "requires": { + "@octokit/types": "^9.0.0", + "is-plain-object": "^5.0.0", + "universal-user-agent": "^6.0.0" + } + }, + "@octokit/graphql": { + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-5.0.6.tgz", + "integrity": "sha512-Fxyxdy/JH0MnIB5h+UQ3yCoh1FG4kWXfFKkpWqjZHw/p+Kc8Y44Hu/kCgNBT6nU1shNumEchmW/sUO1JuQnPcw==", + "dev": true, + "peer": true, + "requires": { + "@octokit/request": "^6.0.0", + "@octokit/types": "^9.0.0", + "universal-user-agent": "^6.0.0" + } + }, + "@octokit/openapi-types": { + "version": "18.0.0", + "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-18.0.0.tgz", + "integrity": "sha512-V8GImKs3TeQRxRtXFpG2wl19V7444NIOTDF24AWuIbmNaNYOQMWRbjcGDXV5B+0n887fgDcuMNOmlul+k+oJtw==", + "dev": true, + "peer": true + }, + "@octokit/plugin-paginate-rest": { + "version": "2.21.3", + "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.21.3.tgz", + "integrity": "sha512-aCZTEf0y2h3OLbrgKkrfFdjRL6eSOo8komneVQJnYecAxIej7Bafor2xhuDJOIFau4pk0i/P28/XgtbyPF0ZHw==", + "dev": true, + "requires": { + "@octokit/types": "^6.40.0" + }, + "dependencies": { + "@octokit/openapi-types": { + "version": "12.11.0", + "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-12.11.0.tgz", + "integrity": "sha512-VsXyi8peyRq9PqIz/tpqiL2w3w80OgVMwBHltTml3LmVvXiphgeqmY9mvBw9Wu7e0QWk/fqD37ux8yP5uVekyQ==", + "dev": true + }, + "@octokit/types": { + "version": "6.41.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-6.41.0.tgz", + "integrity": "sha512-eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg==", + "dev": true, + "requires": { + "@octokit/openapi-types": "^12.11.0" + } + } + } + }, + "@octokit/plugin-request-log": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@octokit/plugin-request-log/-/plugin-request-log-1.0.4.tgz", + "integrity": "sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==", + "dev": true, + "requires": {} + }, + "@octokit/plugin-rest-endpoint-methods": { + "version": "3.17.0", + "resolved": "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-3.17.0.tgz", + "integrity": "sha512-NFV3vq7GgoO2TrkyBRUOwflkfTYkFKS0tLAPym7RNpkwLCttqShaEGjthOsPEEL+7LFcYv3mU24+F2yVd3npmg==", + "dev": true, + "requires": { + "@octokit/types": "^4.1.6", + "deprecation": "^2.3.1" + }, + "dependencies": { + "@octokit/types": { + "version": "4.1.10", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-4.1.10.tgz", + "integrity": "sha512-/wbFy1cUIE5eICcg0wTKGXMlKSbaAxEr00qaBXzscLXpqhcwgXeS6P8O0pkysBhRfyjkKjJaYrvR1ExMO5eOXQ==", + "dev": true, + "requires": { + "@types/node": ">= 8" + } + } + } + }, + "@octokit/request": { + "version": "6.2.8", + "resolved": "https://registry.npmjs.org/@octokit/request/-/request-6.2.8.tgz", + "integrity": "sha512-ow4+pkVQ+6XVVsekSYBzJC0VTVvh/FCTUUgTsboGq+DTeWdyIFV8WSCdo0RIxk6wSkBTHqIK1mYuY7nOBXOchw==", + "dev": true, + "peer": true, + "requires": { + "@octokit/endpoint": "^7.0.0", + "@octokit/request-error": "^3.0.0", + "@octokit/types": "^9.0.0", + "is-plain-object": "^5.0.0", + "node-fetch": "^2.6.7", + "universal-user-agent": "^6.0.0" + } + }, + "@octokit/request-error": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-3.0.3.tgz", + "integrity": "sha512-crqw3V5Iy2uOU5Np+8M/YexTlT8zxCfI+qu+LxUB7SZpje4Qmx3mub5DfEKSO8Ylyk0aogi6TYdf6kxzh2BguQ==", + "dev": true, + "peer": true, + "requires": { + "@octokit/types": "^9.0.0", + "deprecation": "^2.0.0", + "once": "^1.4.0" + } + }, + "@octokit/rest": { + "version": "17.11.2", + "resolved": "https://registry.npmjs.org/@octokit/rest/-/rest-17.11.2.tgz", + "integrity": "sha512-4jTmn8WossTUaLfNDfXk4fVJgbz5JgZE8eCs4BvIb52lvIH8rpVMD1fgRCrHbSd6LRPE5JFZSfAEtszrOq3ZFQ==", + "dev": true, + "requires": { + "@octokit/core": "^2.4.3", + "@octokit/plugin-paginate-rest": "^2.2.0", + "@octokit/plugin-request-log": "^1.0.0", + "@octokit/plugin-rest-endpoint-methods": "3.17.0" + }, + "dependencies": { + "@octokit/auth-token": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-2.5.0.tgz", + "integrity": "sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g==", + "dev": true, + "requires": { + "@octokit/types": "^6.0.3" + }, + "dependencies": { + "@octokit/types": { + "version": "6.41.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-6.41.0.tgz", + "integrity": "sha512-eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg==", + "dev": true, + "requires": { + "@octokit/openapi-types": "^12.11.0" + } + } + } + }, + "@octokit/core": { + "version": "2.5.4", + "resolved": "https://registry.npmjs.org/@octokit/core/-/core-2.5.4.tgz", + "integrity": "sha512-HCp8yKQfTITYK+Nd09MHzAlP1v3Ii/oCohv0/TW9rhSLvzb98BOVs2QmVYuloE6a3l6LsfyGIwb6Pc4ycgWlIQ==", + "dev": true, + "requires": { + "@octokit/auth-token": "^2.4.0", + "@octokit/graphql": "^4.3.1", + "@octokit/request": "^5.4.0", + "@octokit/types": "^5.0.0", + "before-after-hook": "^2.1.0", + "universal-user-agent": "^5.0.0" + }, + "dependencies": { + "universal-user-agent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-5.0.0.tgz", + "integrity": "sha512-B5TPtzZleXyPrUMKCpEHFmVhMN6EhmJYjG5PQna9s7mXeSqGTLap4OpqLl5FCEFUI3UBmllkETwKf/db66Y54Q==", + "dev": true, + "requires": { + "os-name": "^3.1.0" + } + } + } + }, + "@octokit/endpoint": { + "version": "6.0.12", + "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-6.0.12.tgz", + "integrity": "sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA==", + "dev": true, + "requires": { + "@octokit/types": "^6.0.3", + "is-plain-object": "^5.0.0", + "universal-user-agent": "^6.0.0" + }, + "dependencies": { + "@octokit/types": { + "version": "6.41.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-6.41.0.tgz", + "integrity": "sha512-eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg==", + "dev": true, + "requires": { + "@octokit/openapi-types": "^12.11.0" + } + } + } + }, + "@octokit/graphql": { + "version": "4.8.0", + "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-4.8.0.tgz", + "integrity": "sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==", + "dev": true, + "requires": { + "@octokit/request": "^5.6.0", + "@octokit/types": "^6.0.3", + "universal-user-agent": "^6.0.0" + }, + "dependencies": { + "@octokit/types": { + "version": "6.41.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-6.41.0.tgz", + "integrity": "sha512-eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg==", + "dev": true, + "requires": { + "@octokit/openapi-types": "^12.11.0" + } + } + } + }, + "@octokit/openapi-types": { + "version": "12.11.0", + "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-12.11.0.tgz", + "integrity": "sha512-VsXyi8peyRq9PqIz/tpqiL2w3w80OgVMwBHltTml3LmVvXiphgeqmY9mvBw9Wu7e0QWk/fqD37ux8yP5uVekyQ==", + "dev": true + }, + "@octokit/request": { + "version": "5.6.3", + "resolved": "https://registry.npmjs.org/@octokit/request/-/request-5.6.3.tgz", + "integrity": "sha512-bFJl0I1KVc9jYTe9tdGGpAMPy32dLBXXo1dS/YwSCTL/2nd9XeHsY616RE3HPXDVk+a+dBuzyz5YdlXwcDTr2A==", + "dev": true, + "requires": { + "@octokit/endpoint": "^6.0.1", + "@octokit/request-error": "^2.1.0", + "@octokit/types": "^6.16.1", + "is-plain-object": "^5.0.0", + "node-fetch": "^2.6.7", + "universal-user-agent": "^6.0.0" + }, + "dependencies": { + "@octokit/types": { + "version": "6.41.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-6.41.0.tgz", + "integrity": "sha512-eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg==", + "dev": true, + "requires": { + "@octokit/openapi-types": "^12.11.0" + } + } + } + }, + "@octokit/request-error": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-2.1.0.tgz", + "integrity": "sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==", + "dev": true, + "requires": { + "@octokit/types": "^6.0.3", + "deprecation": "^2.0.0", + "once": "^1.4.0" + }, + "dependencies": { + "@octokit/types": { + "version": "6.41.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-6.41.0.tgz", + "integrity": "sha512-eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg==", + "dev": true, + "requires": { + "@octokit/openapi-types": "^12.11.0" + } + } + } + }, + "@octokit/types": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-5.5.0.tgz", + "integrity": "sha512-UZ1pErDue6bZNjYOotCNveTXArOMZQFG6hKJfOnGnulVCMcVVi7YIIuuR4WfBhjo7zgpmzn/BkPDnUXtNx+PcQ==", + "dev": true, + "requires": { + "@types/node": ">= 8" + } + } + } + }, + "@octokit/types": { + "version": "9.3.2", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-9.3.2.tgz", + "integrity": "sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA==", + "dev": true, + "peer": true, + "requires": { + "@octokit/openapi-types": "^18.0.0" + } + }, + "@types/node": { + "version": "20.3.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.3.3.tgz", + "integrity": "sha512-wheIYdr4NYML61AjC8MKj/2jrR/kDQri/CIpVoZwldwhnIrD/j9jIU5bJ8yBKuB2VhpFV7Ab6G2XkBjv9r9Zzw==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "before-after-hook": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.2.3.tgz", + "integrity": "sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==", + "dev": true + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "deprecation": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz", + "integrity": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==", + "dev": true + }, + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "requires": { + "once": "^1.4.0" + } + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "dev": true, + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + } + }, + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "is-plain-object": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", + "dev": true + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "dev": true + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "macos-release": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/macos-release/-/macos-release-2.5.1.tgz", + "integrity": "sha512-DXqXhEM7gW59OjZO8NIjBCz9AQ1BEMrfiOAl4AYByHCtVHRF4KoGNO8mqQeM8lRCtQe/UnJ4imO/d2HdkKsd+A==", + "dev": true + }, + "nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "dev": true + }, + "node-fetch": { + "version": "2.6.12", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.12.tgz", + "integrity": "sha512-C/fGU2E8ToujUivIO0H+tpQ6HWo4eEmchoPIoXtxCrVghxdKq+QOHqEZW7tuP3KlV3bC8FRMO5nMCC7Zm1VP6g==", + "dev": true, + "requires": { + "whatwg-url": "^5.0.0" + } + }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "dev": true, + "requires": { + "path-key": "^2.0.0" + } + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "requires": { + "wrappy": "1" + } + }, + "os-name": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/os-name/-/os-name-3.1.0.tgz", + "integrity": "sha512-h8L+8aNjNcMpo/mAIBPn5PXCM16iyPGjHNWo6U1YO8sJTMHtEtyczI6QJnLoplswm6goopQkqc7OAnjhWcugVg==", + "dev": true, + "requires": { + "macos-release": "^2.2.0", + "windows-release": "^3.1.0" + } + }, + "p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", + "dev": true + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "dev": true + }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dev": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true + }, + "signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "dev": true + }, + "universal-user-agent": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.0.tgz", + "integrity": "sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==", + "dev": true + }, + "webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "dev": true + }, + "whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dev": true, + "requires": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "windows-release": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/windows-release/-/windows-release-3.3.3.tgz", + "integrity": "sha512-OSOGH1QYiW5yVor9TtmXKQvt2vjQqbYS+DqmsZw+r7xDwLXEeT3JGW0ZppFmHx4diyXmxt238KFR3N9jzevBRg==", + "dev": true, + "requires": { + "execa": "^1.0.0" + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + } + } +} From c3e11182128cd140071b7906c5d6725c35024d12 Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 5 Jul 2023 11:00:58 -0700 Subject: [PATCH 080/144] testing --- .github/renovateConfig.js | 4 + Testing/package-lock.json | 3 +- Testing/package.json | 3 +- Testing/pnpm-lock.yaml | 359 -------------------------------------- 4 files changed, 8 insertions(+), 361 deletions(-) delete mode 100644 Testing/pnpm-lock.yaml diff --git a/.github/renovateConfig.js b/.github/renovateConfig.js index 0bb7376..2d425c7 100644 --- a/.github/renovateConfig.js +++ b/.github/renovateConfig.js @@ -19,6 +19,10 @@ module.exports = { { "matchDepTypes": ["devDependencies", "requireDev"], "prPriority": 0 + }, + { + "matchPaths": ["Testing/**"], + "dependencyDashboardApproval": true } ], "rebaseWhen": "conflicted", diff --git a/Testing/package-lock.json b/Testing/package-lock.json index de23a27..ad8d0e2 100644 --- a/Testing/package-lock.json +++ b/Testing/package-lock.json @@ -10,7 +10,8 @@ "license": "ISC", "devDependencies": { "@octokit/rest": "^17.1.0", - "chalk": "^4.0.0" + "chalk": "^4.0.0", + "semver": "^5.7.1" } }, "node_modules/@octokit/auth-token": { diff --git a/Testing/package.json b/Testing/package.json index f74935c..4185d84 100644 --- a/Testing/package.json +++ b/Testing/package.json @@ -9,7 +9,8 @@ "author": "", "license": "ISC", "devDependencies": { + "@octokit/rest": "^17.1.0", "chalk": "^4.0.0", - "@octokit/rest": "^17.1.0" + "semver": "^5.7.1" } } diff --git a/Testing/pnpm-lock.yaml b/Testing/pnpm-lock.yaml deleted file mode 100644 index 0acf8b6..0000000 --- a/Testing/pnpm-lock.yaml +++ /dev/null @@ -1,359 +0,0 @@ -lockfileVersion: '6.0' - -settings: - autoInstallPeers: true - excludeLinksFromLockfile: false - -devDependencies: - '@octokit/rest': - specifier: ^17.1.0 - version: 17.1.0 - chalk: - specifier: ^4.0.0 - version: 4.0.0 - -packages: - - /@octokit/auth-token@2.5.0: - resolution: {integrity: sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g==} - dependencies: - '@octokit/types': 6.41.0 - dev: true - - /@octokit/core@2.5.4: - resolution: {integrity: sha512-HCp8yKQfTITYK+Nd09MHzAlP1v3Ii/oCohv0/TW9rhSLvzb98BOVs2QmVYuloE6a3l6LsfyGIwb6Pc4ycgWlIQ==} - dependencies: - '@octokit/auth-token': 2.5.0 - '@octokit/graphql': 4.8.0 - '@octokit/request': 5.6.3 - '@octokit/types': 5.5.0 - before-after-hook: 2.2.3 - universal-user-agent: 5.0.0 - transitivePeerDependencies: - - encoding - dev: true - - /@octokit/endpoint@6.0.12: - resolution: {integrity: sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA==} - dependencies: - '@octokit/types': 6.41.0 - is-plain-object: 5.0.0 - universal-user-agent: 6.0.0 - dev: true - - /@octokit/graphql@4.8.0: - resolution: {integrity: sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==} - dependencies: - '@octokit/request': 5.6.3 - '@octokit/types': 6.41.0 - universal-user-agent: 6.0.0 - transitivePeerDependencies: - - encoding - dev: true - - /@octokit/openapi-types@12.11.0: - resolution: {integrity: sha512-VsXyi8peyRq9PqIz/tpqiL2w3w80OgVMwBHltTml3LmVvXiphgeqmY9mvBw9Wu7e0QWk/fqD37ux8yP5uVekyQ==} - dev: true - - /@octokit/plugin-paginate-rest@2.21.3(@octokit/core@2.5.4): - resolution: {integrity: sha512-aCZTEf0y2h3OLbrgKkrfFdjRL6eSOo8komneVQJnYecAxIej7Bafor2xhuDJOIFau4pk0i/P28/XgtbyPF0ZHw==} - peerDependencies: - '@octokit/core': '>=2' - dependencies: - '@octokit/core': 2.5.4 - '@octokit/types': 6.41.0 - dev: true - - /@octokit/plugin-request-log@1.0.4(@octokit/core@2.5.4): - resolution: {integrity: sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==} - peerDependencies: - '@octokit/core': '>=3' - dependencies: - '@octokit/core': 2.5.4 - dev: true - - /@octokit/plugin-rest-endpoint-methods@3.17.0: - resolution: {integrity: sha512-NFV3vq7GgoO2TrkyBRUOwflkfTYkFKS0tLAPym7RNpkwLCttqShaEGjthOsPEEL+7LFcYv3mU24+F2yVd3npmg==} - dependencies: - '@octokit/types': 4.1.10 - deprecation: 2.3.1 - dev: true - - /@octokit/request-error@2.1.0: - resolution: {integrity: sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==} - dependencies: - '@octokit/types': 6.41.0 - deprecation: 2.3.1 - once: 1.4.0 - dev: true - - /@octokit/request@5.6.3: - resolution: {integrity: sha512-bFJl0I1KVc9jYTe9tdGGpAMPy32dLBXXo1dS/YwSCTL/2nd9XeHsY616RE3HPXDVk+a+dBuzyz5YdlXwcDTr2A==} - dependencies: - '@octokit/endpoint': 6.0.12 - '@octokit/request-error': 2.1.0 - '@octokit/types': 6.41.0 - is-plain-object: 5.0.0 - node-fetch: 2.6.12 - universal-user-agent: 6.0.0 - transitivePeerDependencies: - - encoding - dev: true - - /@octokit/rest@17.1.0: - resolution: {integrity: sha512-L5YtpxHZSHZCh2xETbzxz8clBGmcpT+5e78JLZQ+VfuHrHJ1J/r+R2PGwKHwClUEECTeWFMMdAtIik+OCkANBg==} - dependencies: - '@octokit/core': 2.5.4 - '@octokit/plugin-paginate-rest': 2.21.3(@octokit/core@2.5.4) - '@octokit/plugin-request-log': 1.0.4(@octokit/core@2.5.4) - '@octokit/plugin-rest-endpoint-methods': 3.17.0 - transitivePeerDependencies: - - encoding - dev: true - - /@octokit/types@4.1.10: - resolution: {integrity: sha512-/wbFy1cUIE5eICcg0wTKGXMlKSbaAxEr00qaBXzscLXpqhcwgXeS6P8O0pkysBhRfyjkKjJaYrvR1ExMO5eOXQ==} - dependencies: - '@types/node': 20.3.3 - dev: true - - /@octokit/types@5.5.0: - resolution: {integrity: sha512-UZ1pErDue6bZNjYOotCNveTXArOMZQFG6hKJfOnGnulVCMcVVi7YIIuuR4WfBhjo7zgpmzn/BkPDnUXtNx+PcQ==} - dependencies: - '@types/node': 20.3.3 - dev: true - - /@octokit/types@6.41.0: - resolution: {integrity: sha512-eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg==} - dependencies: - '@octokit/openapi-types': 12.11.0 - dev: true - - /@types/node@20.3.3: - resolution: {integrity: sha512-wheIYdr4NYML61AjC8MKj/2jrR/kDQri/CIpVoZwldwhnIrD/j9jIU5bJ8yBKuB2VhpFV7Ab6G2XkBjv9r9Zzw==} - dev: true - - /ansi-styles@4.3.0: - resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} - engines: {node: '>=8'} - dependencies: - color-convert: 2.0.1 - dev: true - - /before-after-hook@2.2.3: - resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==} - dev: true - - /chalk@4.0.0: - resolution: {integrity: sha512-N9oWFcegS0sFr9oh1oz2d7Npos6vNoWW9HvtCg5N1KRFpUhaAhvTv5Y58g880fZaEYSNm3qDz8SU1UrGvp+n7A==} - engines: {node: '>=10'} - dependencies: - ansi-styles: 4.3.0 - supports-color: 7.2.0 - dev: true - - /color-convert@2.0.1: - resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} - engines: {node: '>=7.0.0'} - dependencies: - color-name: 1.1.4 - dev: true - - /color-name@1.1.4: - resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} - dev: true - - /cross-spawn@6.0.5: - resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==} - engines: {node: '>=4.8'} - dependencies: - nice-try: 1.0.5 - path-key: 2.0.1 - semver: 5.7.1 - shebang-command: 1.2.0 - which: 1.3.1 - dev: true - - /deprecation@2.3.1: - resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==} - dev: true - - /end-of-stream@1.4.4: - resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} - dependencies: - once: 1.4.0 - dev: true - - /execa@1.0.0: - resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==} - engines: {node: '>=6'} - dependencies: - cross-spawn: 6.0.5 - get-stream: 4.1.0 - is-stream: 1.1.0 - npm-run-path: 2.0.2 - p-finally: 1.0.0 - signal-exit: 3.0.7 - strip-eof: 1.0.0 - dev: true - - /get-stream@4.1.0: - resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==} - engines: {node: '>=6'} - dependencies: - pump: 3.0.0 - dev: true - - /has-flag@4.0.0: - resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} - engines: {node: '>=8'} - dev: true - - /is-plain-object@5.0.0: - resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} - engines: {node: '>=0.10.0'} - dev: true - - /is-stream@1.1.0: - resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==} - engines: {node: '>=0.10.0'} - dev: true - - /isexe@2.0.0: - resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} - dev: true - - /macos-release@2.5.1: - resolution: {integrity: sha512-DXqXhEM7gW59OjZO8NIjBCz9AQ1BEMrfiOAl4AYByHCtVHRF4KoGNO8mqQeM8lRCtQe/UnJ4imO/d2HdkKsd+A==} - engines: {node: '>=6'} - dev: true - - /nice-try@1.0.5: - resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==} - dev: true - - /node-fetch@2.6.12: - resolution: {integrity: sha512-C/fGU2E8ToujUivIO0H+tpQ6HWo4eEmchoPIoXtxCrVghxdKq+QOHqEZW7tuP3KlV3bC8FRMO5nMCC7Zm1VP6g==} - engines: {node: 4.x || >=6.0.0} - peerDependencies: - encoding: ^0.1.0 - peerDependenciesMeta: - encoding: - optional: true - dependencies: - whatwg-url: 5.0.0 - dev: true - - /npm-run-path@2.0.2: - resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==} - engines: {node: '>=4'} - dependencies: - path-key: 2.0.1 - dev: true - - /once@1.4.0: - resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} - dependencies: - wrappy: 1.0.2 - dev: true - - /os-name@3.1.0: - resolution: {integrity: sha512-h8L+8aNjNcMpo/mAIBPn5PXCM16iyPGjHNWo6U1YO8sJTMHtEtyczI6QJnLoplswm6goopQkqc7OAnjhWcugVg==} - engines: {node: '>=6'} - dependencies: - macos-release: 2.5.1 - windows-release: 3.3.3 - dev: true - - /p-finally@1.0.0: - resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==} - engines: {node: '>=4'} - dev: true - - /path-key@2.0.1: - resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==} - engines: {node: '>=4'} - dev: true - - /pump@3.0.0: - resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} - dependencies: - end-of-stream: 1.4.4 - once: 1.4.0 - dev: true - - /semver@5.7.1: - resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==} - hasBin: true - dev: true - - /shebang-command@1.2.0: - resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} - engines: {node: '>=0.10.0'} - dependencies: - shebang-regex: 1.0.0 - dev: true - - /shebang-regex@1.0.0: - resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} - engines: {node: '>=0.10.0'} - dev: true - - /signal-exit@3.0.7: - resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} - dev: true - - /strip-eof@1.0.0: - resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==} - engines: {node: '>=0.10.0'} - dev: true - - /supports-color@7.2.0: - resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} - engines: {node: '>=8'} - dependencies: - has-flag: 4.0.0 - dev: true - - /tr46@0.0.3: - resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} - dev: true - - /universal-user-agent@5.0.0: - resolution: {integrity: sha512-B5TPtzZleXyPrUMKCpEHFmVhMN6EhmJYjG5PQna9s7mXeSqGTLap4OpqLl5FCEFUI3UBmllkETwKf/db66Y54Q==} - dependencies: - os-name: 3.1.0 - dev: true - - /universal-user-agent@6.0.0: - resolution: {integrity: sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==} - dev: true - - /webidl-conversions@3.0.1: - resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} - dev: true - - /whatwg-url@5.0.0: - resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} - dependencies: - tr46: 0.0.3 - webidl-conversions: 3.0.1 - dev: true - - /which@1.3.1: - resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} - hasBin: true - dependencies: - isexe: 2.0.0 - dev: true - - /windows-release@3.3.3: - resolution: {integrity: sha512-OSOGH1QYiW5yVor9TtmXKQvt2vjQqbYS+DqmsZw+r7xDwLXEeT3JGW0ZppFmHx4diyXmxt238KFR3N9jzevBRg==} - engines: {node: '>=6'} - dependencies: - execa: 1.0.0 - dev: true - - /wrappy@1.0.2: - resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} - dev: true From 88764bc821035884cd0e52120ebc6a45dde8a08f Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 5 Jul 2023 11:12:02 -0700 Subject: [PATCH 081/144] add description --- .github/renovateConfig.js | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/renovateConfig.js b/.github/renovateConfig.js index 2d425c7..1b9b187 100644 --- a/.github/renovateConfig.js +++ b/.github/renovateConfig.js @@ -21,6 +21,7 @@ module.exports = { "prPriority": 0 }, { + "description": "Disabled Paths", "matchPaths": ["Testing/**"], "dependencyDashboardApproval": true } From e53c5553ae1d0c3551b2ad8598a52540af5fbe77 Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 5 Jul 2023 11:26:18 -0700 Subject: [PATCH 082/144] testing schedule that will never hit --- .github/renovateConfig.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/renovateConfig.js b/.github/renovateConfig.js index 1b9b187..29cbb1e 100644 --- a/.github/renovateConfig.js +++ b/.github/renovateConfig.js @@ -23,7 +23,8 @@ module.exports = { { "description": "Disabled Paths", "matchPaths": ["Testing/**"], - "dependencyDashboardApproval": true + // "dependencyDashboardApproval": true + "schedule": "on 1st day of January in 2100" } ], "rebaseWhen": "conflicted", From a18797b1a6366afc25176aef785d89df383f91e3 Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 5 Jul 2023 11:32:10 -0700 Subject: [PATCH 083/144] remove existing config --- renovate.json | 53 --------------------------------------------------- 1 file changed, 53 deletions(-) delete mode 100644 renovate.json diff --git a/renovate.json b/renovate.json deleted file mode 100644 index 6f74fc6..0000000 --- a/renovate.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": ["config:base"], - "stabilityDays": 7, - "timezone": "America/Los_Angeles", - "schedule": ["after 9pm and before 12am every weekday"], - "prHourlyLimit": 1, - "prConcurrentLimit": 1, - "labels": ["dependencies", "renovate"], - "git-submodules": { - "enabled": true - }, - "dependencyDashboard": true, - "major": { - "dependencyDashboardApproval": true - }, - "packageRules": [ - { - "matchPackageNames": ["aws/aws-sdk-php", "rector/rector"], - "matchUpdateTypes": ["patch"], - "enabled": false - }, - { - "matchPackageNames": ["react-commerce"], - "prPriority": 2 - }, - { - "matchDepTypes": ["dependencies", "require"], - "prPriority": 1 - }, - { - "matchDepTypes": ["devDependencies", "requireDev"], - "prPriority": 0 - } - ], - "rebaseWhen": "conflicted", - "enabledManagers": ["npm", "composer", "git-submodules", "github-actions"], - "force": { - "constraints": { - "node": "14.20.1", - "pnpm": "7.27.0" - } - }, - "cloneSubmodules": true, - "allowScripts": true, - "ignoreScripts": false, - "platform": "github", - "branchPrefix": "test-renovate/", - "repositories": [ - {"repository": "batbattur/All"} - ], - "gitAuthor": "Renovate Bot " -} From 4ec4e35a7beecf77a5278713b77f70236cf29e68 Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 5 Jul 2023 11:34:39 -0700 Subject: [PATCH 084/144] testing --- Testing/package-lock.json | 117 +++----------------------------------- Testing/package.json | 2 +- 2 files changed, 9 insertions(+), 110 deletions(-) diff --git a/Testing/package-lock.json b/Testing/package-lock.json index ad8d0e2..4f0ba98 100644 --- a/Testing/package-lock.json +++ b/Testing/package-lock.json @@ -10,7 +10,7 @@ "license": "ISC", "devDependencies": { "@octokit/rest": "^17.1.0", - "chalk": "^4.0.0", + "chalk": "5.0.1", "semver": "^5.7.1" } }, @@ -335,21 +335,6 @@ "integrity": "sha512-wheIYdr4NYML61AjC8MKj/2jrR/kDQri/CIpVoZwldwhnIrD/j9jIU5bJ8yBKuB2VhpFV7Ab6G2XkBjv9r9Zzw==", "dev": true }, - "node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, "node_modules/before-after-hook": { "version": "2.2.3", "resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.2.3.tgz", @@ -357,39 +342,17 @@ "dev": true }, "node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.0.1.tgz", + "integrity": "sha512-Fo07WOYGqMfCWHOzSXOt2CxDbC6skS/jO9ynEcmpANMoPrD+W1r1K6Vx7iNm+AQmETU1Xr2t+n8nzkV9t6xh3w==", "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, "engines": { - "node": ">=10" + "node": "^12.17.0 || ^14.13 || >=16.0.0" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, "node_modules/cross-spawn": { "version": "6.0.5", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", @@ -451,15 +414,6 @@ "node": ">=6" } }, - "node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/is-plain-object": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", @@ -629,18 +583,6 @@ "node": ">=0.10.0" } }, - "node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/tr46": { "version": "0.0.3", "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", @@ -1020,15 +962,6 @@ "integrity": "sha512-wheIYdr4NYML61AjC8MKj/2jrR/kDQri/CIpVoZwldwhnIrD/j9jIU5bJ8yBKuB2VhpFV7Ab6G2XkBjv9r9Zzw==", "dev": true }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, "before-after-hook": { "version": "2.2.3", "resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.2.3.tgz", @@ -1036,28 +969,9 @@ "dev": true }, "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.0.1.tgz", + "integrity": "sha512-Fo07WOYGqMfCWHOzSXOt2CxDbC6skS/jO9ynEcmpANMoPrD+W1r1K6Vx7iNm+AQmETU1Xr2t+n8nzkV9t6xh3w==", "dev": true }, "cross-spawn": { @@ -1112,12 +1026,6 @@ "pump": "^3.0.0" } }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, "is-plain-object": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", @@ -1240,15 +1148,6 @@ "integrity": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==", "dev": true }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, "tr46": { "version": "0.0.3", "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", diff --git a/Testing/package.json b/Testing/package.json index 4185d84..f7781f4 100644 --- a/Testing/package.json +++ b/Testing/package.json @@ -10,7 +10,7 @@ "license": "ISC", "devDependencies": { "@octokit/rest": "^17.1.0", - "chalk": "^4.0.0", + "chalk": "^5.0.1", "semver": "^5.7.1" } } From fb31723beb7b4fdfeda56f617db4a489de2e754c Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 5 Jul 2023 11:47:39 -0700 Subject: [PATCH 085/144] testing --- .github/renovateConfig.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/renovateConfig.js b/.github/renovateConfig.js index 29cbb1e..5bb7e12 100644 --- a/.github/renovateConfig.js +++ b/.github/renovateConfig.js @@ -5,7 +5,7 @@ module.exports = { "git-submodules": { "enabled": true }, - "dependencyDashboard": true, + "dependencyDashboard": false, "dependencyDashboardOSVVulnerabilitySummary": "all", "osvVulnerabilityAlerts": true, "major": { From 1b760ac692641734cc7f167c1f58541eb339f03e Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 5 Jul 2023 11:52:12 -0700 Subject: [PATCH 086/144] testing --- .github/renovateConfig.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/renovateConfig.js b/.github/renovateConfig.js index 5bb7e12..29cbb1e 100644 --- a/.github/renovateConfig.js +++ b/.github/renovateConfig.js @@ -5,7 +5,7 @@ module.exports = { "git-submodules": { "enabled": true }, - "dependencyDashboard": false, + "dependencyDashboard": true, "dependencyDashboardOSVVulnerabilitySummary": "all", "osvVulnerabilityAlerts": true, "major": { From 8e348c144b131dd1774a00f9cce9d22f332bdca5 Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 5 Jul 2023 13:12:03 -0700 Subject: [PATCH 087/144] testing --- .github/renovateConfig.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/renovateConfig.js b/.github/renovateConfig.js index 29cbb1e..da5ed69 100644 --- a/.github/renovateConfig.js +++ b/.github/renovateConfig.js @@ -11,6 +11,8 @@ module.exports = { "major": { "dependencyDashboardApproval": true }, + "onboarding": false, + "requireConfig": false, "packageRules": [ { "matchDepTypes": ["dependencies", "require"], From 2f6a6a7e10a21261e8175d8e2adae6515090dfc9 Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 5 Jul 2023 13:18:16 -0700 Subject: [PATCH 088/144] update schedule --- .github/renovateConfig.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/renovateConfig.js b/.github/renovateConfig.js index da5ed69..8dc80cc 100644 --- a/.github/renovateConfig.js +++ b/.github/renovateConfig.js @@ -26,7 +26,7 @@ module.exports = { "description": "Disabled Paths", "matchPaths": ["Testing/**"], // "dependencyDashboardApproval": true - "schedule": "on 1st day of January in 2100" + "schedule": ["on 1st day of January in 2100"] } ], "rebaseWhen": "conflicted", From 7d95d170321ecefeca9dc927314c9c1e296b11ee Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 5 Jul 2023 13:39:35 -0700 Subject: [PATCH 089/144] testing never --- .github/renovateConfig.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/renovateConfig.js b/.github/renovateConfig.js index 8dc80cc..4944718 100644 --- a/.github/renovateConfig.js +++ b/.github/renovateConfig.js @@ -26,7 +26,7 @@ module.exports = { "description": "Disabled Paths", "matchPaths": ["Testing/**"], // "dependencyDashboardApproval": true - "schedule": ["on 1st day of January in 2100"] + "schedule": ["never"] } ], "rebaseWhen": "conflicted", From 0f6ad41dba4b5e08088434a59e16cbb1a6cb0096 Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 5 Jul 2023 13:48:15 -0700 Subject: [PATCH 090/144] use past cron date --- .github/renovateConfig.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/renovateConfig.js b/.github/renovateConfig.js index 4944718..3130d57 100644 --- a/.github/renovateConfig.js +++ b/.github/renovateConfig.js @@ -26,7 +26,7 @@ module.exports = { "description": "Disabled Paths", "matchPaths": ["Testing/**"], // "dependencyDashboardApproval": true - "schedule": ["never"] + "schedule": ["0 0 0 1 1 ? 1970"] } ], "rebaseWhen": "conflicted", From 97e13ee18072ccd80b5c42e94bf71998c93acbf9 Mon Sep 17 00:00:00 2001 From: batbattur Date: Thu, 6 Jul 2023 09:17:27 -0700 Subject: [PATCH 091/144] testing february 31 --- .github/renovateConfig.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/renovateConfig.js b/.github/renovateConfig.js index 3130d57..7331cb3 100644 --- a/.github/renovateConfig.js +++ b/.github/renovateConfig.js @@ -26,7 +26,7 @@ module.exports = { "description": "Disabled Paths", "matchPaths": ["Testing/**"], // "dependencyDashboardApproval": true - "schedule": ["0 0 0 1 1 ? 1970"] + "schedule": ["0 0 31 2 *"] } ], "rebaseWhen": "conflicted", From 61db6a9a8fc0e2c318dd81a04123f3e8892c17bd Mon Sep 17 00:00:00 2001 From: batbattur Date: Thu, 6 Jul 2023 09:18:54 -0700 Subject: [PATCH 092/144] stop scheduling --- .github/workflows/renovate.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index 428962a..6261db3 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -2,8 +2,8 @@ name: Renovate on: workflow_dispatch: - schedule: - - cron: '0/30 * * * *' + # schedule: + # - cron: '0/30 * * * *' jobs: renovate: From 18688f4000b5bcf47a7e84fda35788e47729df77 Mon Sep 17 00:00:00 2001 From: batbattur Date: Thu, 6 Jul 2023 09:24:06 -0700 Subject: [PATCH 093/144] testing feb 31 --- .github/renovateConfig.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/renovateConfig.js b/.github/renovateConfig.js index 7331cb3..663743f 100644 --- a/.github/renovateConfig.js +++ b/.github/renovateConfig.js @@ -26,7 +26,7 @@ module.exports = { "description": "Disabled Paths", "matchPaths": ["Testing/**"], // "dependencyDashboardApproval": true - "schedule": ["0 0 31 2 *"] + "schedule": ["* 0 31 2 *"] } ], "rebaseWhen": "conflicted", From 19bf8f32892b682c018cee260bf7b1914aae27ff Mon Sep 17 00:00:00 2001 From: batbattur Date: Thu, 6 Jul 2023 09:37:59 -0700 Subject: [PATCH 094/144] testing --- .github/renovateConfig.js | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/renovateConfig.js b/.github/renovateConfig.js index 663743f..a2fd433 100644 --- a/.github/renovateConfig.js +++ b/.github/renovateConfig.js @@ -13,6 +13,7 @@ module.exports = { }, "onboarding": false, "requireConfig": false, + "prHourlyLimit": 0, "packageRules": [ { "matchDepTypes": ["dependencies", "require"], From 75e2c2044e49ab89527a940a861cdbce93e32e2e Mon Sep 17 00:00:00 2001 From: batbattur Date: Thu, 6 Jul 2023 09:46:12 -0700 Subject: [PATCH 095/144] testing --- .github/renovateConfig.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/renovateConfig.js b/.github/renovateConfig.js index a2fd433..9c6c002 100644 --- a/.github/renovateConfig.js +++ b/.github/renovateConfig.js @@ -27,7 +27,8 @@ module.exports = { "description": "Disabled Paths", "matchPaths": ["Testing/**"], // "dependencyDashboardApproval": true - "schedule": ["* 0 31 2 *"] + "schedule": ["* 0 31 2 *"], + "prPriority": -1 } ], "rebaseWhen": "conflicted", From fee17308c5e3e1707a6885c597684f226fd62e9b Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Tue, 11 Jul 2023 15:06:28 -0700 Subject: [PATCH 096/144] Update checklist.yml --- .github/workflows/checklist.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index 29487ac..e79c9d3 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -1,6 +1,7 @@ name: QA on: pull_request: + workflow_dispatch: push: branches: - master @@ -18,6 +19,11 @@ jobs: - name: Checkout code uses: actions/checkout@v2 + - name: RUN ATTEMPT AND NUMBER + run: | + echo "RUN ATTEMPT: ${{ github.run_attempt }}" + echo "RUN NUMBER: ${{ github.run_number }}" + - name: Checkout code run: jq --version From ecdae8633cfe6a701a81e125a03eb09fc02ae710 Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Tue, 11 Jul 2023 15:13:24 -0700 Subject: [PATCH 097/144] Update checklist.yml --- .github/workflows/checklist.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index e79c9d3..09a7ae8 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -24,6 +24,24 @@ jobs: echo "RUN ATTEMPT: ${{ github.run_attempt }}" echo "RUN NUMBER: ${{ github.run_number }}" + - name: TEST 1 + if: ${{ github.run_attempt > 1 }} + run: | + echo "RUN ATTEMPT: ${{ github.run_attempt }}" + echo "RUN NUMBER: ${{ github.run_number }}" + + - name: TEST 2 + if: github.run_attempt > 1 + run: | + echo "RUN ATTEMPT: ${{ github.run_attempt }}" + echo "RUN NUMBER: ${{ github.run_number }}" + + - name: TEST 3 + if: github.run_attempt == 1 + run: | + echo "RUN ATTEMPT: ${{ github.run_attempt }}" + echo "RUN NUMBER: ${{ github.run_number }}" + - name: Checkout code run: jq --version From 6d4bb48912e3a20ed847636602792b03faa68305 Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Tue, 11 Jul 2023 15:17:11 -0700 Subject: [PATCH 098/144] Update action.yml --- .github/actions/setup-ci-env-vars/action.yml | 27 ++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/.github/actions/setup-ci-env-vars/action.yml b/.github/actions/setup-ci-env-vars/action.yml index 2803567..6bb73f7 100644 --- a/.github/actions/setup-ci-env-vars/action.yml +++ b/.github/actions/setup-ci-env-vars/action.yml @@ -12,3 +12,30 @@ runs: - name: echo COMMIT run: echo "$COMMIT" shell: bash + + - name: RUN ATTEMPT AND NUMBER + shell: bash + run: | + echo "RUN ATTEMPT: ${{ github.run_attempt }}" + echo "RUN NUMBER: ${{ github.run_number }}" + + - name: TEST 1 + if: ${{ github.run_attempt > 1 }} + shell: bash + run: | + echo "RUN ATTEMPT: ${{ github.run_attempt }}" + echo "RUN NUMBER: ${{ github.run_number }}" + + - name: TEST 2 + shell: bash + if: github.run_attempt > 1 + run: | + echo "RUN ATTEMPT: ${{ github.run_attempt }}" + echo "RUN NUMBER: ${{ github.run_number }}" + + - name: TEST 3 + shell: bash + if: github.run_attempt == 1 + run: | + echo "RUN ATTEMPT: ${{ github.run_attempt }}" + echo "RUN NUMBER: ${{ github.run_number }}" From 7771c236771f1f3c23a6a24e508cd4dd1fb1c8a8 Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Tue, 11 Jul 2023 15:17:57 -0700 Subject: [PATCH 099/144] Update checklist.yml --- .github/workflows/checklist.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index 09a7ae8..14789e0 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -42,6 +42,9 @@ jobs: echo "RUN ATTEMPT: ${{ github.run_attempt }}" echo "RUN NUMBER: ${{ github.run_number }}" + - name: echo chommit from composite action + uses: ./.github/actions/setup-ci-env-vars + - name: Checkout code run: jq --version From 94de8d50645c384b828082f16b207efd4b3df553 Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Tue, 11 Jul 2023 15:18:54 -0700 Subject: [PATCH 100/144] Update action.yml --- .github/actions/setup-ci-env-vars/action.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/actions/setup-ci-env-vars/action.yml b/.github/actions/setup-ci-env-vars/action.yml index 6bb73f7..7dad8f8 100644 --- a/.github/actions/setup-ci-env-vars/action.yml +++ b/.github/actions/setup-ci-env-vars/action.yml @@ -3,11 +3,11 @@ description: Set CI Environment Variables runs: using: 'composite' steps: - - name: Dump GitHub context - env: - GITHUB_CONTEXT: ${{ toJSON(github) }} - run: echo "$GITHUB_CONTEXT" - shell: bash + # - name: Dump GitHub context + # env: + # GITHUB_CONTEXT: ${{ toJSON(github) }} + # run: echo "$GITHUB_CONTEXT" + # shell: bash - name: echo COMMIT run: echo "$COMMIT" From 52787daec523cb54dce101b232ae95a5103de69b Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Tue, 11 Jul 2023 15:23:29 -0700 Subject: [PATCH 101/144] Update checklist.yml --- .github/workflows/checklist.yml | 37 +++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index 14789e0..dfedeb1 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -48,6 +48,43 @@ jobs: - name: Checkout code run: jq --version + checklist_job1: + needs: checklist_job + runs-on: ubuntu-latest + name: checklist_job1 + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: RUN ATTEMPT AND NUMBER + run: | + echo "RUN ATTEMPT: ${{ github.run_attempt }}" + echo "RUN NUMBER: ${{ github.run_number }}" + + - name: TEST 1 + if: ${{ github.run_attempt > 1 }} + run: | + echo "RUN ATTEMPT: ${{ github.run_attempt }}" + echo "RUN NUMBER: ${{ github.run_number }}" + + - name: TEST 2 + if: github.run_attempt > 1 + run: | + echo "RUN ATTEMPT: ${{ github.run_attempt }}" + echo "RUN NUMBER: ${{ github.run_number }}" + + - name: TEST 3 + if: github.run_attempt == 1 + run: | + echo "RUN ATTEMPT: ${{ github.run_attempt }}" + echo "RUN NUMBER: ${{ github.run_number }}" + + - name: echo chommit from composite action + uses: ./.github/actions/setup-ci-env-vars + + - name: Checkout code + run: jq --version + - name: Test output QUEUE_LOCKED id: check_queue run: | From e1a3789d48469720c75696484fb46b8a119cba34 Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Tue, 11 Jul 2023 15:37:13 -0700 Subject: [PATCH 102/144] Update action.yml --- .github/actions/setup-ci-env-vars/action.yml | 25 ++++++++++++++------ 1 file changed, 18 insertions(+), 7 deletions(-) diff --git a/.github/actions/setup-ci-env-vars/action.yml b/.github/actions/setup-ci-env-vars/action.yml index 7dad8f8..fb7d5d5 100644 --- a/.github/actions/setup-ci-env-vars/action.yml +++ b/.github/actions/setup-ci-env-vars/action.yml @@ -19,19 +19,15 @@ runs: echo "RUN ATTEMPT: ${{ github.run_attempt }}" echo "RUN NUMBER: ${{ github.run_number }}" - - name: TEST 1 - if: ${{ github.run_attempt > 1 }} - shell: bash - run: | - echo "RUN ATTEMPT: ${{ github.run_attempt }}" - echo "RUN NUMBER: ${{ github.run_number }}" - - name: TEST 2 shell: bash + id: is-rerun if: github.run_attempt > 1 run: | echo "RUN ATTEMPT: ${{ github.run_attempt }}" echo "RUN NUMBER: ${{ github.run_number }}" + echo "IS_RERUN='true'}" >> $GITHUB_OUTPUT + exit 1 - name: TEST 3 shell: bash @@ -39,3 +35,18 @@ runs: run: | echo "RUN ATTEMPT: ${{ github.run_attempt }}" echo "RUN NUMBER: ${{ github.run_number }}" + + - name: failure + shell: bash + if: failure() && steps.is-rerun.outputs.IS_RERUN !== 'true' + run: | + echo "RUN ATTEMPT: ${{ github.run_attempt }}" + echo "RUN NUMBER: ${{ github.run_number }}" + + - name: always + shell: bash + if: always() && steps.is-rerun.outputs.IS_RERUN !== 'true' + run: | + echo "RUN ATTEMPT: ${{ github.run_attempt }}" + echo "RUN NUMBER: ${{ github.run_number }}" + From ce6c9efc3ac3c07bb009ea1974fce39065ade86b Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Tue, 11 Jul 2023 15:39:19 -0700 Subject: [PATCH 103/144] Update action.yml --- .github/actions/setup-ci-env-vars/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/setup-ci-env-vars/action.yml b/.github/actions/setup-ci-env-vars/action.yml index fb7d5d5..d02cae0 100644 --- a/.github/actions/setup-ci-env-vars/action.yml +++ b/.github/actions/setup-ci-env-vars/action.yml @@ -38,14 +38,14 @@ runs: - name: failure shell: bash - if: failure() && steps.is-rerun.outputs.IS_RERUN !== 'true' + if: failure() && steps.is-rerun.outputs.IS_RERUN != 'true' run: | echo "RUN ATTEMPT: ${{ github.run_attempt }}" echo "RUN NUMBER: ${{ github.run_number }}" - name: always shell: bash - if: always() && steps.is-rerun.outputs.IS_RERUN !== 'true' + if: always() && steps.is-rerun.outputs.IS_RERUN != 'true' run: | echo "RUN ATTEMPT: ${{ github.run_attempt }}" echo "RUN NUMBER: ${{ github.run_number }}" From 602aab40d08d7825ca5938f2290316f234c2480c Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Tue, 11 Jul 2023 15:42:15 -0700 Subject: [PATCH 104/144] Update action.yml --- .github/actions/setup-ci-env-vars/action.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/actions/setup-ci-env-vars/action.yml b/.github/actions/setup-ci-env-vars/action.yml index d02cae0..8311da4 100644 --- a/.github/actions/setup-ci-env-vars/action.yml +++ b/.github/actions/setup-ci-env-vars/action.yml @@ -40,13 +40,11 @@ runs: shell: bash if: failure() && steps.is-rerun.outputs.IS_RERUN != 'true' run: | - echo "RUN ATTEMPT: ${{ github.run_attempt }}" - echo "RUN NUMBER: ${{ github.run_number }}" + echo "RUNNING THE FAILURE CASE" - - name: always + - name: alwaysaaa shell: bash if: always() && steps.is-rerun.outputs.IS_RERUN != 'true' run: | - echo "RUN ATTEMPT: ${{ github.run_attempt }}" - echo "RUN NUMBER: ${{ github.run_number }}" + echo "RUNNING THE ALWAYS CASE" From 77beca787976556ca5a8a245e6a3495d10434790 Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 12 Jul 2023 10:39:27 -0700 Subject: [PATCH 105/144] testing --- .github/actions/setup-ci-env-vars/action.yml | 21 +++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/.github/actions/setup-ci-env-vars/action.yml b/.github/actions/setup-ci-env-vars/action.yml index 8311da4..9ccdcd4 100644 --- a/.github/actions/setup-ci-env-vars/action.yml +++ b/.github/actions/setup-ci-env-vars/action.yml @@ -19,16 +19,19 @@ runs: echo "RUN ATTEMPT: ${{ github.run_attempt }}" echo "RUN NUMBER: ${{ github.run_number }}" - - name: TEST 2 + - name: check-attempt shell: bash - id: is-rerun - if: github.run_attempt > 1 + id: check-attempt run: | + echo "INSIDE CHECK ATTEMPT" echo "RUN ATTEMPT: ${{ github.run_attempt }}" - echo "RUN NUMBER: ${{ github.run_number }}" - echo "IS_RERUN='true'}" >> $GITHUB_OUTPUT - exit 1 - + echo "first_attempt=$(echo ${{ github.run_attempt }} == 1 | bc)}" >> $GITHUB_OUTPUT + + - name: check-attempt output + shell: bash + run: | + echo "CHECKING check-attempt output: ${{ steps.check-attempt.outputs.first_attempt }}" + - name: TEST 3 shell: bash if: github.run_attempt == 1 @@ -38,13 +41,13 @@ runs: - name: failure shell: bash - if: failure() && steps.is-rerun.outputs.IS_RERUN != 'true' + if: ${{ needs.check-attempt.outputs.first_attempt == 'true' && failure() }} run: | echo "RUNNING THE FAILURE CASE" - name: alwaysaaa shell: bash - if: always() && steps.is-rerun.outputs.IS_RERUN != 'true' + if: always() run: | echo "RUNNING THE ALWAYS CASE" From 709ec17c599398241189db5591aac3b192209199 Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 12 Jul 2023 10:41:16 -0700 Subject: [PATCH 106/144] testing --- .github/actions/setup-ci-env-vars/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/setup-ci-env-vars/action.yml b/.github/actions/setup-ci-env-vars/action.yml index 9ccdcd4..3c56dd2 100644 --- a/.github/actions/setup-ci-env-vars/action.yml +++ b/.github/actions/setup-ci-env-vars/action.yml @@ -41,7 +41,7 @@ runs: - name: failure shell: bash - if: ${{ needs.check-attempt.outputs.first_attempt == 'true' && failure() }} + if: ${{ steps.check-attempt.outputs.first_attempt == 'true' && failure() }} run: | echo "RUNNING THE FAILURE CASE" From 66124cd3d99ed10cbe377b3fd31415074cdc72d8 Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 12 Jul 2023 10:45:38 -0700 Subject: [PATCH 107/144] testing --- .github/actions/setup-ci-env-vars/action.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/actions/setup-ci-env-vars/action.yml b/.github/actions/setup-ci-env-vars/action.yml index 3c56dd2..5647d48 100644 --- a/.github/actions/setup-ci-env-vars/action.yml +++ b/.github/actions/setup-ci-env-vars/action.yml @@ -30,7 +30,8 @@ runs: - name: check-attempt output shell: bash run: | - echo "CHECKING check-attempt output: ${{ steps.check-attempt.outputs.first_attempt }}" + echo "CHECKING check-attempt output: ${{ steps.check-attempt.outputs.first_attempt }} + echo ${{ steps.check-attempt.outputs.first_attempt }} - name: TEST 3 shell: bash From deb228056a54c34588abba63e128bcd73ae6044a Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 12 Jul 2023 10:51:46 -0700 Subject: [PATCH 108/144] testing --- .github/actions/setup-ci-env-vars/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/setup-ci-env-vars/action.yml b/.github/actions/setup-ci-env-vars/action.yml index 5647d48..f71d025 100644 --- a/.github/actions/setup-ci-env-vars/action.yml +++ b/.github/actions/setup-ci-env-vars/action.yml @@ -30,7 +30,7 @@ runs: - name: check-attempt output shell: bash run: | - echo "CHECKING check-attempt output: ${{ steps.check-attempt.outputs.first_attempt }} + echo "CHECKING check-attempt output:" ${{ steps.check-attempt.outputs.first_attempt }} echo ${{ steps.check-attempt.outputs.first_attempt }} - name: TEST 3 From 9f9b37a0c223425d2b64526c9f8ff9d2edac8dda Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 12 Jul 2023 10:54:28 -0700 Subject: [PATCH 109/144] testing --- .github/actions/setup-ci-env-vars/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/setup-ci-env-vars/action.yml b/.github/actions/setup-ci-env-vars/action.yml index f71d025..4dfc56f 100644 --- a/.github/actions/setup-ci-env-vars/action.yml +++ b/.github/actions/setup-ci-env-vars/action.yml @@ -25,7 +25,7 @@ runs: run: | echo "INSIDE CHECK ATTEMPT" echo "RUN ATTEMPT: ${{ github.run_attempt }}" - echo "first_attempt=$(echo ${{ github.run_attempt }} == 1 | bc)}" >> $GITHUB_OUTPUT + echo "first_attempt=$(echo ${{ github.run_attempt }} == 1 | bc}" >> $GITHUB_OUTPUT - name: check-attempt output shell: bash From 6ec1a74450dbdfc1186b174db2dc9409bd5fc075 Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 12 Jul 2023 10:55:40 -0700 Subject: [PATCH 110/144] testing --- .github/actions/setup-ci-env-vars/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/setup-ci-env-vars/action.yml b/.github/actions/setup-ci-env-vars/action.yml index 4dfc56f..76bf815 100644 --- a/.github/actions/setup-ci-env-vars/action.yml +++ b/.github/actions/setup-ci-env-vars/action.yml @@ -25,7 +25,7 @@ runs: run: | echo "INSIDE CHECK ATTEMPT" echo "RUN ATTEMPT: ${{ github.run_attempt }}" - echo "first_attempt=$(echo ${{ github.run_attempt }} == 1 | bc}" >> $GITHUB_OUTPUT + echo "first_attempt=$(echo ${{ github.run_attempt }} == 1 | bc)" >> $GITHUB_OUTPUT - name: check-attempt output shell: bash From b1480b2b8128cc639e48d3ca6417d271a3506e40 Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 12 Jul 2023 10:59:07 -0700 Subject: [PATCH 111/144] testing --- .github/actions/setup-ci-env-vars/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/setup-ci-env-vars/action.yml b/.github/actions/setup-ci-env-vars/action.yml index 76bf815..229cfb3 100644 --- a/.github/actions/setup-ci-env-vars/action.yml +++ b/.github/actions/setup-ci-env-vars/action.yml @@ -42,7 +42,7 @@ runs: - name: failure shell: bash - if: ${{ steps.check-attempt.outputs.first_attempt == 'true' && failure() }} + if: ${{ steps.check-attempt.outputs.first_attempt == 1 && failure() }} run: | echo "RUNNING THE FAILURE CASE" From 59f8bcfb0dc5a189a202d1b43c24209041989d71 Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 12 Jul 2023 11:13:45 -0700 Subject: [PATCH 112/144] testing --- .github/actions/setup-ci-env-vars/action.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/actions/setup-ci-env-vars/action.yml b/.github/actions/setup-ci-env-vars/action.yml index 229cfb3..b513f51 100644 --- a/.github/actions/setup-ci-env-vars/action.yml +++ b/.github/actions/setup-ci-env-vars/action.yml @@ -27,6 +27,15 @@ runs: echo "RUN ATTEMPT: ${{ github.run_attempt }}" echo "first_attempt=$(echo ${{ github.run_attempt }} == 1 | bc)" >> $GITHUB_OUTPUT + - name: Exit if not the first attempt + if: steps.check-attempt.outputs.first_attempt == 0 + shell: bash + run: | + echo "INSIDE Exit if not the first attempt" + echo "EXITING" + exit 1 + + - name: check-attempt output shell: bash run: | From ca6bca5d8bfa0e0a1a649f578e3aaef237e516d0 Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 12 Jul 2023 11:15:52 -0700 Subject: [PATCH 113/144] testing --- .github/actions/setup-ci-env-vars/action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/actions/setup-ci-env-vars/action.yml b/.github/actions/setup-ci-env-vars/action.yml index b513f51..35f4e13 100644 --- a/.github/actions/setup-ci-env-vars/action.yml +++ b/.github/actions/setup-ci-env-vars/action.yml @@ -41,6 +41,7 @@ runs: run: | echo "CHECKING check-attempt output:" ${{ steps.check-attempt.outputs.first_attempt }} echo ${{ steps.check-attempt.outputs.first_attempt }} + exit 1 - name: TEST 3 shell: bash From 5b515dddf5059dc2197436e61c22b408c2935fb7 Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 12 Jul 2023 11:16:57 -0700 Subject: [PATCH 114/144] testing --- .github/actions/setup-ci-env-vars/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/setup-ci-env-vars/action.yml b/.github/actions/setup-ci-env-vars/action.yml index 35f4e13..5d9c33d 100644 --- a/.github/actions/setup-ci-env-vars/action.yml +++ b/.github/actions/setup-ci-env-vars/action.yml @@ -52,7 +52,7 @@ runs: - name: failure shell: bash - if: ${{ steps.check-attempt.outputs.first_attempt == 1 && failure() }} + if: steps.check-attempt.outputs.first_attempt == 1 && failure() run: | echo "RUNNING THE FAILURE CASE" From a2fd6ecc771a22fa8ecfd38cc7c1ab766520ca19 Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 12 Jul 2023 11:50:21 -0700 Subject: [PATCH 115/144] testing --- .github/workflows/checklist.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index dfedeb1..eeafaab 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -42,9 +42,6 @@ jobs: echo "RUN ATTEMPT: ${{ github.run_attempt }}" echo "RUN NUMBER: ${{ github.run_number }}" - - name: echo chommit from composite action - uses: ./.github/actions/setup-ci-env-vars - - name: Checkout code run: jq --version From 37a90292ea01e2987f7846d2205ec66fdab7b439 Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 12 Jul 2023 12:30:59 -0700 Subject: [PATCH 116/144] testing --- .github/workflows/checklist.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index eeafaab..057574b 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -44,6 +44,12 @@ jobs: - name: Checkout code run: jq --version + + - name: Dump GitHub context + env: + GITHUB_CONTEXT: ${{ toJSON(github) }} + run: echo "$GITHUB_CONTEXT" + checklist_job1: needs: checklist_job @@ -58,6 +64,11 @@ jobs: echo "RUN ATTEMPT: ${{ github.run_attempt }}" echo "RUN NUMBER: ${{ github.run_number }}" + - name: Dump GitHub context + env: + GITHUB_CONTEXT: ${{ toJSON(github) }} + run: echo "$GITHUB_CONTEXT" + - name: TEST 1 if: ${{ github.run_attempt > 1 }} run: | From df4e2b0fc135259955dfe2a3e693b7cb603633f4 Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 12 Jul 2023 14:39:23 -0700 Subject: [PATCH 117/144] testing --- .github/actions/setup-ci-env-vars/action.yml | 42 ++++++++++---------- .github/workflows/checklist.yml | 5 +++ 2 files changed, 26 insertions(+), 21 deletions(-) diff --git a/.github/actions/setup-ci-env-vars/action.yml b/.github/actions/setup-ci-env-vars/action.yml index 5d9c33d..7af3edf 100644 --- a/.github/actions/setup-ci-env-vars/action.yml +++ b/.github/actions/setup-ci-env-vars/action.yml @@ -19,29 +19,29 @@ runs: echo "RUN ATTEMPT: ${{ github.run_attempt }}" echo "RUN NUMBER: ${{ github.run_number }}" - - name: check-attempt - shell: bash - id: check-attempt - run: | - echo "INSIDE CHECK ATTEMPT" - echo "RUN ATTEMPT: ${{ github.run_attempt }}" - echo "first_attempt=$(echo ${{ github.run_attempt }} == 1 | bc)" >> $GITHUB_OUTPUT + # - name: check-attempt + # shell: bash + # id: check-attempt + # run: | + # echo "INSIDE CHECK ATTEMPT" + # echo "RUN ATTEMPT: ${{ github.run_attempt }}" + # echo "first_attempt=$(echo ${{ github.run_attempt }} == 1 | bc)" >> $GITHUB_OUTPUT - - name: Exit if not the first attempt - if: steps.check-attempt.outputs.first_attempt == 0 - shell: bash - run: | - echo "INSIDE Exit if not the first attempt" - echo "EXITING" - exit 1 + # - name: Exit if not the first attempt + # if: steps.check-attempt.outputs.first_attempt == 0 + # shell: bash + # run: | + # echo "INSIDE Exit if not the first attempt" + # echo "EXITING" + # exit 1 - - name: check-attempt output - shell: bash - run: | - echo "CHECKING check-attempt output:" ${{ steps.check-attempt.outputs.first_attempt }} - echo ${{ steps.check-attempt.outputs.first_attempt }} - exit 1 + # - name: check-attempt output + # shell: bash + # run: | + # echo "CHECKING check-attempt output:" ${{ steps.check-attempt.outputs.first_attempt }} + # echo ${{ steps.check-attempt.outputs.first_attempt }} + # exit 1 - name: TEST 3 shell: bash @@ -52,7 +52,7 @@ runs: - name: failure shell: bash - if: steps.check-attempt.outputs.first_attempt == 1 && failure() + if: failure() run: | echo "RUNNING THE FAILURE CASE" diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index 057574b..ef926a3 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -59,6 +59,10 @@ jobs: - name: Checkout code uses: actions/checkout@v2 + - name: RUN ATTEMPT AND NUMBER + if: github.run_attempt > 1 + run: exit 1 + - name: RUN ATTEMPT AND NUMBER run: | echo "RUN ATTEMPT: ${{ github.run_attempt }}" @@ -86,6 +90,7 @@ jobs: run: | echo "RUN ATTEMPT: ${{ github.run_attempt }}" echo "RUN NUMBER: ${{ github.run_number }}" + exit 1 - name: echo chommit from composite action uses: ./.github/actions/setup-ci-env-vars From 9d86e2d373c28af020279f079332a06d2b8b650d Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 12 Jul 2023 14:41:27 -0700 Subject: [PATCH 118/144] testing --- .github/workflows/checklist.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index ef926a3..6b39543 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -85,12 +85,12 @@ jobs: echo "RUN ATTEMPT: ${{ github.run_attempt }}" echo "RUN NUMBER: ${{ github.run_number }}" - - name: TEST 3 - if: github.run_attempt == 1 - run: | - echo "RUN ATTEMPT: ${{ github.run_attempt }}" - echo "RUN NUMBER: ${{ github.run_number }}" - exit 1 + # - name: TEST 3 + # if: github.run_attempt == 1 + # run: | + # echo "RUN ATTEMPT: ${{ github.run_attempt }}" + # echo "RUN NUMBER: ${{ github.run_number }}" + # exit 1 - name: echo chommit from composite action uses: ./.github/actions/setup-ci-env-vars From f6a1ae2cac890496319a1c454517338ae7479142 Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 12 Jul 2023 15:37:24 -0700 Subject: [PATCH 119/144] testing --- .github/actions/setup-ci-env-vars/action.yml | 41 ++++++++--------- .github/workflows/checklist.yml | 47 +++++++------------- 2 files changed, 36 insertions(+), 52 deletions(-) diff --git a/.github/actions/setup-ci-env-vars/action.yml b/.github/actions/setup-ci-env-vars/action.yml index 7af3edf..d1f6fda 100644 --- a/.github/actions/setup-ci-env-vars/action.yml +++ b/.github/actions/setup-ci-env-vars/action.yml @@ -9,15 +9,15 @@ runs: # run: echo "$GITHUB_CONTEXT" # shell: bash - - name: echo COMMIT - run: echo "$COMMIT" - shell: bash + # - name: echo COMMIT + # run: echo "$COMMIT" + # shell: bash - - name: RUN ATTEMPT AND NUMBER - shell: bash - run: | - echo "RUN ATTEMPT: ${{ github.run_attempt }}" - echo "RUN NUMBER: ${{ github.run_number }}" + # - name: RUN ATTEMPT AND NUMBER + # shell: bash + # run: | + # echo "RUN ATTEMPT: ${{ github.run_attempt }}" + # echo "RUN NUMBER: ${{ github.run_number }}" # - name: check-attempt # shell: bash @@ -45,20 +45,21 @@ runs: - name: TEST 3 shell: bash - if: github.run_attempt == 1 + if: github.run_attempt > 1 run: | echo "RUN ATTEMPT: ${{ github.run_attempt }}" - echo "RUN NUMBER: ${{ github.run_number }}" + echo "is_rerun='true'" >> $GITHUB_OUTPUT + exit 1 - - name: failure - shell: bash - if: failure() - run: | - echo "RUNNING THE FAILURE CASE" + # - name: failure + # shell: bash + # if: failure() + # run: | + # echo "RUNNING THE FAILURE CASE" - - name: alwaysaaa - shell: bash - if: always() - run: | - echo "RUNNING THE ALWAYS CASE" + # - name: alwaysaaa + # shell: bash + # if: always() + # run: | + # echo "RUNNING THE ALWAYS CASE" diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index 6b39543..2d80dce 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -59,31 +59,25 @@ jobs: - name: Checkout code uses: actions/checkout@v2 - - name: RUN ATTEMPT AND NUMBER - if: github.run_attempt > 1 - run: exit 1 + # - name: RUN ATTEMPT AND NUMBER + # if: github.run_attempt > 1 + # run: exit 1 - - name: RUN ATTEMPT AND NUMBER - run: | - echo "RUN ATTEMPT: ${{ github.run_attempt }}" - echo "RUN NUMBER: ${{ github.run_number }}" + # - name: RUN ATTEMPT AND NUMBER + # run: | + # echo "RUN ATTEMPT: ${{ github.run_attempt }}" + # echo "RUN NUMBER: ${{ github.run_number }}" - name: Dump GitHub context env: GITHUB_CONTEXT: ${{ toJSON(github) }} run: echo "$GITHUB_CONTEXT" - - name: TEST 1 - if: ${{ github.run_attempt > 1 }} - run: | - echo "RUN ATTEMPT: ${{ github.run_attempt }}" - echo "RUN NUMBER: ${{ github.run_number }}" - - - name: TEST 2 - if: github.run_attempt > 1 - run: | - echo "RUN ATTEMPT: ${{ github.run_attempt }}" - echo "RUN NUMBER: ${{ github.run_number }}" + # - name: TEST 2 + # if: github.run_attempt > 1 + # run: | + # echo "RUN ATTEMPT: ${{ github.run_attempt }}" + # echo "RUN NUMBER: ${{ github.run_number }}" # - name: TEST 3 # if: github.run_attempt == 1 @@ -92,23 +86,12 @@ jobs: # echo "RUN NUMBER: ${{ github.run_number }}" # exit 1 - - name: echo chommit from composite action + - name: check rerun + id: check_rerun uses: ./.github/actions/setup-ci-env-vars - - name: Checkout code - run: jq --version - - - name: Test output QUEUE_LOCKED - id: check_queue - run: | - echo "QUEUE_LOCKED=false" >> $GITHUB_OUTPUT - echo "QUEUE_LOCKED=true" >> $GITHUB_OUTPUT - - - name: Echo QUEUE_LOCKED - run: echo "${{ steps.check_queue.outputs.QUEUE_LOCKED }}" - - name: Deploy - if: steps.check_queue.outputs.QUEUE_LOCKED == 'false' + if: (failure() || cancelled()) && steps.check_rerun.outputs.is_rerun != 'true' run: echo "hi" # - name: Dump GitHub context From b65e6cd6879255994435dcfae0a30491742e9ceb Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 12 Jul 2023 15:40:16 -0700 Subject: [PATCH 120/144] testing --- .github/workflows/checklist.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index 2d80dce..9fbd4e1 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -92,7 +92,9 @@ jobs: - name: Deploy if: (failure() || cancelled()) && steps.check_rerun.outputs.is_rerun != 'true' - run: echo "hi" + run: | + echo "hi" + echo ${{ steps.check_rerun.outputs.is_rerun }} # - name: Dump GitHub context # env: From 755b8f4567b46e649a956a0f5bf383b7d5bc0849 Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 12 Jul 2023 15:46:13 -0700 Subject: [PATCH 121/144] testing --- .github/actions/setup-ci-env-vars/action.yml | 2 +- .github/workflows/checklist.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/setup-ci-env-vars/action.yml b/.github/actions/setup-ci-env-vars/action.yml index d1f6fda..8dc1cf1 100644 --- a/.github/actions/setup-ci-env-vars/action.yml +++ b/.github/actions/setup-ci-env-vars/action.yml @@ -48,7 +48,7 @@ runs: if: github.run_attempt > 1 run: | echo "RUN ATTEMPT: ${{ github.run_attempt }}" - echo "is_rerun='true'" >> $GITHUB_OUTPUT + echo "is_rerun='true'" >> $GITHUB_ENV exit 1 # - name: failure diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index 9fbd4e1..ef19d73 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -91,10 +91,10 @@ jobs: uses: ./.github/actions/setup-ci-env-vars - name: Deploy - if: (failure() || cancelled()) && steps.check_rerun.outputs.is_rerun != 'true' + if: (failure() || cancelled()) && env.is_rerun != 'true' run: | echo "hi" - echo ${{ steps.check_rerun.outputs.is_rerun }} + echo ${{ env.is_rerun }} # - name: Dump GitHub context # env: From 9f569cac0f3041ff95d24613954ffc88c6d9bcb9 Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 12 Jul 2023 15:49:46 -0700 Subject: [PATCH 122/144] testing --- .github/workflows/checklist.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index ef19d73..719f0eb 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -95,6 +95,8 @@ jobs: run: | echo "hi" echo ${{ env.is_rerun }} + echo ${{ env.is_rerun == 'true' }} + echo ${{ env.is_rerun != 'true' }} # - name: Dump GitHub context # env: From 92546af983cb9f49a5b4adb1e3844988e0949c4e Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 12 Jul 2023 15:51:52 -0700 Subject: [PATCH 123/144] testing --- .github/actions/setup-ci-env-vars/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/setup-ci-env-vars/action.yml b/.github/actions/setup-ci-env-vars/action.yml index 8dc1cf1..a86f2d8 100644 --- a/.github/actions/setup-ci-env-vars/action.yml +++ b/.github/actions/setup-ci-env-vars/action.yml @@ -48,7 +48,7 @@ runs: if: github.run_attempt > 1 run: | echo "RUN ATTEMPT: ${{ github.run_attempt }}" - echo "is_rerun='true'" >> $GITHUB_ENV + echo "is_rerun=true" >> $GITHUB_ENV exit 1 # - name: failure From 652f37920149222cab47c87ccaaf9a75e5faa4da Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 12 Jul 2023 15:55:10 -0700 Subject: [PATCH 124/144] testing --- .github/workflows/checklist.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index 719f0eb..e89672f 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -90,6 +90,9 @@ jobs: id: check_rerun uses: ./.github/actions/setup-ci-env-vars + - name: Checkout code + run: exit 1 + - name: Deploy if: (failure() || cancelled()) && env.is_rerun != 'true' run: | From 0fafc40520778142228c21fd34b77bb789f771e8 Mon Sep 17 00:00:00 2001 From: batbattur <58952979+batbattur@users.noreply.github.com> Date: Wed, 16 Aug 2023 18:19:55 -0700 Subject: [PATCH 125/144] Create testingworkflow.yml --- .github/workflows/testingworkflow.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/testingworkflow.yml diff --git a/.github/workflows/testingworkflow.yml b/.github/workflows/testingworkflow.yml new file mode 100644 index 0000000..c3db3dc --- /dev/null +++ b/.github/workflows/testingworkflow.yml @@ -0,0 +1,13 @@ +name: testinggg workflow +on: + pull_request: + push: + workflow_dispatch: + +jobs: + test1: + runs-on: ubuntu-latest + name: testinggg workflow + steps: + - name: Checkout code + run: whoami From 3c88cebf1b029418622abf2441f20055ef92ad5c Mon Sep 17 00:00:00 2001 From: batbattur Date: Mon, 28 Aug 2023 14:15:13 -0700 Subject: [PATCH 126/144] validate --- .github/actions/validate/action.yml | 19 +++++++++++++++++++ .github/workflows/deploy.yml | 23 +++++++++++++++++++++++ .github/workflows/fast-deploy.yml | 23 +++++++++++++++++++++++ 3 files changed, 65 insertions(+) create mode 100644 .github/actions/validate/action.yml create mode 100644 .github/workflows/deploy.yml create mode 100644 .github/workflows/fast-deploy.yml diff --git a/.github/actions/validate/action.yml b/.github/actions/validate/action.yml new file mode 100644 index 0000000..4a2f105 --- /dev/null +++ b/.github/actions/validate/action.yml @@ -0,0 +1,19 @@ +name: validate +description: validate +inputs: + validate: + description: 'Should validate after deploying' + required: true + default: 'true' + +runs: + using: 'composite' + steps: + - name: VALIDATING + if: inputs.validate == 'true' + shell: bash + run: echo "VALIDATING" + + - name: TEST + shell: bash + run: echo "TEST" diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..aebb2cb --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,23 @@ +name: DEPLOY +on: + pull_request: + push: + branches: + - master + workflow_dispatch: + +env: + COMMIT: ${{ github.sha }} + +jobs: + deploy: + runs-on: ubuntu-latest + name: deploy + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: fast-deploy + uses: ./.github/actions/validate + with: + validate: 'true' diff --git a/.github/workflows/fast-deploy.yml b/.github/workflows/fast-deploy.yml new file mode 100644 index 0000000..94517d4 --- /dev/null +++ b/.github/workflows/fast-deploy.yml @@ -0,0 +1,23 @@ +name: FAST DEPLOY +on: workflow_dispatch + # pull_request: + # push: + # branches: + # - master + + +env: + COMMIT: ${{ github.sha }} + +jobs: + fast-deploy: + runs-on: ubuntu-latest + name: fast-deploy + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: fast-deploy + uses: ./.github/actions/validate + with: + validate: 'false' From bf772814f63dfdbd56ed22970ff688bf661e64ba Mon Sep 17 00:00:00 2001 From: batbattur Date: Mon, 28 Aug 2023 14:32:01 -0700 Subject: [PATCH 127/144] use expression --- .github/actions/validate/action.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/actions/validate/action.yml b/.github/actions/validate/action.yml index 4a2f105..3981fd5 100644 --- a/.github/actions/validate/action.yml +++ b/.github/actions/validate/action.yml @@ -14,6 +14,12 @@ runs: shell: bash run: echo "VALIDATING" + - name: VALIDATING EXPRESSION + if: ${{ inputs.validate }} == 'true' + shell: bash + run: echo "VALIDATING EXPRESSION" + + - name: TEST shell: bash run: echo "TEST" From 018d0c0015a83a6d444022a4ae1f5767aeedd291 Mon Sep 17 00:00:00 2001 From: batbattur Date: Mon, 28 Aug 2023 14:34:21 -0700 Subject: [PATCH 128/144] tesitng --- .github/actions/validate/action.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/actions/validate/action.yml b/.github/actions/validate/action.yml index 3981fd5..faea854 100644 --- a/.github/actions/validate/action.yml +++ b/.github/actions/validate/action.yml @@ -19,6 +19,9 @@ runs: shell: bash run: echo "VALIDATING EXPRESSION" + - name: PRINT EXPRESSION + run: echo ${{ inputs.validate }} + shell: bash - name: TEST shell: bash From 249416e5826c487c4921adf14992ef38781f0ae0 Mon Sep 17 00:00:00 2001 From: batbattur Date: Mon, 28 Aug 2023 14:45:19 -0700 Subject: [PATCH 129/144] testing --- .github/actions/validate/action.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/actions/validate/action.yml b/.github/actions/validate/action.yml index faea854..acf1729 100644 --- a/.github/actions/validate/action.yml +++ b/.github/actions/validate/action.yml @@ -19,6 +19,11 @@ runs: shell: bash run: echo "VALIDATING EXPRESSION" + - name: VALIDATING JUST EXPRESSION + if: ${{ inputs.validate }} + shell: bash + run: echo "VALIDATING JUST EXPRESSION" + - name: PRINT EXPRESSION run: echo ${{ inputs.validate }} shell: bash From 4ec1f149de117bf858886f55231133972a3077e3 Mon Sep 17 00:00:00 2001 From: batbattur Date: Mon, 28 Aug 2023 14:50:49 -0700 Subject: [PATCH 130/144] testing --- .github/actions/validate/action.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/actions/validate/action.yml b/.github/actions/validate/action.yml index acf1729..d11346c 100644 --- a/.github/actions/validate/action.yml +++ b/.github/actions/validate/action.yml @@ -28,6 +28,16 @@ runs: run: echo ${{ inputs.validate }} shell: bash + - name: WEIRD EXPRESSION 1 + if: false == 'true' + shell: bash + run: echo "WEIRD EXPRESSION 1" + + - name: WEIRD EXPRESSION 2 + if: ${{ inputs.validate }} == true + shell: bash + run: echo "WEIRD EXPRESSION 2" + - name: TEST shell: bash run: echo "TEST" From 33d1fd61636dd1107fb0b6499649eb50cbf88b89 Mon Sep 17 00:00:00 2001 From: batbattur Date: Mon, 28 Aug 2023 15:06:19 -0700 Subject: [PATCH 131/144] testing --- .github/workflows/fast-deploy.yml | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/.github/workflows/fast-deploy.yml b/.github/workflows/fast-deploy.yml index 94517d4..db81fb0 100644 --- a/.github/workflows/fast-deploy.yml +++ b/.github/workflows/fast-deploy.yml @@ -1,10 +1,15 @@ name: FAST DEPLOY -on: workflow_dispatch - # pull_request: - # push: - # branches: - # - master - +on: + workflow_dispatch: + inputs: + validate: + description: 'Validate deploys?' + required: false + default: 'false' + type: choice + options: + - 'false' + - 'true' env: COMMIT: ${{ github.sha }} @@ -20,4 +25,4 @@ jobs: - name: fast-deploy uses: ./.github/actions/validate with: - validate: 'false' + validate: ${{ inputs.validate }} From b63de81f007d1d53faa5dc290ff0e5fd5835521b Mon Sep 17 00:00:00 2001 From: batbattur Date: Mon, 28 Aug 2023 15:06:59 -0700 Subject: [PATCH 132/144] testing --- .github/workflows/fast-deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/fast-deploy.yml b/.github/workflows/fast-deploy.yml index db81fb0..c06dbdb 100644 --- a/.github/workflows/fast-deploy.yml +++ b/.github/workflows/fast-deploy.yml @@ -4,7 +4,7 @@ on: inputs: validate: description: 'Validate deploys?' - required: false + required: true default: 'false' type: choice options: From d7be11e60fc26c11468390dd306bd80d26d99016 Mon Sep 17 00:00:00 2001 From: batbattur Date: Mon, 28 Aug 2023 15:30:21 -0700 Subject: [PATCH 133/144] testing --- .github/actions/validate/action.yml | 26 ++++++-------------------- 1 file changed, 6 insertions(+), 20 deletions(-) diff --git a/.github/actions/validate/action.yml b/.github/actions/validate/action.yml index d11346c..7626712 100644 --- a/.github/actions/validate/action.yml +++ b/.github/actions/validate/action.yml @@ -14,29 +14,15 @@ runs: shell: bash run: echo "VALIDATING" - - name: VALIDATING EXPRESSION - if: ${{ inputs.validate }} == 'true' - shell: bash - run: echo "VALIDATING EXPRESSION" - - - name: VALIDATING JUST EXPRESSION - if: ${{ inputs.validate }} - shell: bash - run: echo "VALIDATING JUST EXPRESSION" - - - name: PRINT EXPRESSION - run: echo ${{ inputs.validate }} + - name: VALIDATING FULLY WRAPPED + if: ${{ inputs.validate == 'true' }} shell: bash + run: echo "VALIDATING" - - name: WEIRD EXPRESSION 1 - if: false == 'true' - shell: bash - run: echo "WEIRD EXPRESSION 1" - - - name: WEIRD EXPRESSION 2 - if: ${{ inputs.validate }} == true + - name: VALIDATING WITH EXISITNG EXPRESSION + if: ${{ inputs.validate }} == 'true' shell: bash - run: echo "WEIRD EXPRESSION 2" + run: echo "VALIDATING EXPRESSION" - name: TEST shell: bash From 2433841c97d0c92522bc8b2b3852959890411f41 Mon Sep 17 00:00:00 2001 From: batbattur Date: Mon, 28 Aug 2023 15:31:59 -0700 Subject: [PATCH 134/144] testing --- .github/actions/validate/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/validate/action.yml b/.github/actions/validate/action.yml index 7626712..d481618 100644 --- a/.github/actions/validate/action.yml +++ b/.github/actions/validate/action.yml @@ -22,7 +22,7 @@ runs: - name: VALIDATING WITH EXISITNG EXPRESSION if: ${{ inputs.validate }} == 'true' shell: bash - run: echo "VALIDATING EXPRESSION" + run: echo "BUG ON MASTER" - name: TEST shell: bash From 744b8e1919f43ed615542696b2dc071c17e866fd Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 4 Oct 2023 13:46:15 -0700 Subject: [PATCH 135/144] testing --- .github/workflows/checklist.yml | 82 +++++++++++---------------------- 1 file changed, 27 insertions(+), 55 deletions(-) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index e89672f..9d909af 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -52,80 +52,52 @@ jobs: checklist_job1: - needs: checklist_job runs-on: ubuntu-latest name: checklist_job1 steps: - name: Checkout code uses: actions/checkout@v2 - # - name: RUN ATTEMPT AND NUMBER - # if: github.run_attempt > 1 - # run: exit 1 - - # - name: RUN ATTEMPT AND NUMBER - # run: | - # echo "RUN ATTEMPT: ${{ github.run_attempt }}" - # echo "RUN NUMBER: ${{ github.run_number }}" - - name: Dump GitHub context env: GITHUB_CONTEXT: ${{ toJSON(github) }} run: echo "$GITHUB_CONTEXT" - # - name: TEST 2 - # if: github.run_attempt > 1 - # run: | - # echo "RUN ATTEMPT: ${{ github.run_attempt }}" - # echo "RUN NUMBER: ${{ github.run_number }}" - - # - name: TEST 3 - # if: github.run_attempt == 1 - # run: | - # echo "RUN ATTEMPT: ${{ github.run_attempt }}" - # echo "RUN NUMBER: ${{ github.run_number }}" - # exit 1 - - - name: check rerun - id: check_rerun - uses: ./.github/actions/setup-ci-env-vars + - name: Print TESTING + run: | + echo ${{ github.workflow }} + echo ${{ github.ref }} + echo ${{ github.run_number }} - name: Checkout code run: exit 1 - name: Deploy - if: (failure() || cancelled()) && env.is_rerun != 'true' + if: failure() run: | echo "hi" echo ${{ env.is_rerun }} echo ${{ env.is_rerun == 'true' }} echo ${{ env.is_rerun != 'true' }} - -# - name: Dump GitHub context -# env: -# GITHUB_CONTEXT: ${{ toJSON(github) }} -# run: echo "$GITHUB_CONTEXT" - -# - name: Print TESTING -# run: | -# echo ${{ github.workflow }} -# echo ${{ github.ref }} -# echo ${{ github.run_number }} -# shell: bash - -# - name: Print github.sha -# run: echo ${{ github.sha }} -# - name: Print github.event.pull_request.head.sha -# run: echo ${{ github.event.pull_request.head.sha }} - - -# - name: Get head commit sha from the push event and set it to push_head_commit env -# run: echo "push_head_commit=$(echo $COMMITS_JSON | jq ".[length - 2].id")" >> $GITHUB_ENV -# shell: bash -# env: -# COMMITS_JSON: ${{ toJSON(github.event.commits) }} - -# - name: Print sha of the head commit -# run: echo "$push_head_commit" -# shell: bash + + checklist_job12 + runs-on: ubuntu-latest + name: checklist_job1 + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: sleep 180 + run: echo "$GITHUB_CONTEXT" + + - name: Print TESTING + run: | + echo ${{ github.workflow }} + echo ${{ github.ref }} + echo ${{ github.run_number }} + + - name: Deploy + if: cancelled() + run: | + echo "this was cancelled" From 84077473374b6d59140c2a94e2d192565951c456 Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 4 Oct 2023 13:47:59 -0700 Subject: [PATCH 136/144] testing --- .github/workflows/checklist.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index 9d909af..c8eefc8 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -50,7 +50,6 @@ jobs: GITHUB_CONTEXT: ${{ toJSON(github) }} run: echo "$GITHUB_CONTEXT" - checklist_job1: runs-on: ubuntu-latest name: checklist_job1 @@ -80,8 +79,7 @@ jobs: echo ${{ env.is_rerun == 'true' }} echo ${{ env.is_rerun != 'true' }} - - checklist_job12 + checklist_job1: runs-on: ubuntu-latest name: checklist_job1 steps: From 4907f1cdcc1992a14bde07a6c028fe0bd5e47316 Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 4 Oct 2023 13:50:16 -0700 Subject: [PATCH 137/144] test --- .github/workflows/checklist.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index c8eefc8..64bb9b0 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -79,7 +79,7 @@ jobs: echo ${{ env.is_rerun == 'true' }} echo ${{ env.is_rerun != 'true' }} - checklist_job1: + checklist_job2: runs-on: ubuntu-latest name: checklist_job1 steps: From c881f71dd3d9a94d7416336b6dc7b0786ca8e34b Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 4 Oct 2023 13:54:40 -0700 Subject: [PATCH 138/144] testing --- .github/workflows/checklist.yml | 56 +++++++-------------------------- 1 file changed, 11 insertions(+), 45 deletions(-) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index 64bb9b0..8d8bd00 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -19,36 +19,9 @@ jobs: - name: Checkout code uses: actions/checkout@v2 - - name: RUN ATTEMPT AND NUMBER + - name: Print run_id run: | - echo "RUN ATTEMPT: ${{ github.run_attempt }}" - echo "RUN NUMBER: ${{ github.run_number }}" - - - name: TEST 1 - if: ${{ github.run_attempt > 1 }} - run: | - echo "RUN ATTEMPT: ${{ github.run_attempt }}" - echo "RUN NUMBER: ${{ github.run_number }}" - - - name: TEST 2 - if: github.run_attempt > 1 - run: | - echo "RUN ATTEMPT: ${{ github.run_attempt }}" - echo "RUN NUMBER: ${{ github.run_number }}" - - - name: TEST 3 - if: github.run_attempt == 1 - run: | - echo "RUN ATTEMPT: ${{ github.run_attempt }}" - echo "RUN NUMBER: ${{ github.run_number }}" - - - name: Checkout code - run: jq --version - - - name: Dump GitHub context - env: - GITHUB_CONTEXT: ${{ toJSON(github) }} - run: echo "$GITHUB_CONTEXT" + echo ${{ github.run_id }} checklist_job1: runs-on: ubuntu-latest @@ -62,22 +35,17 @@ jobs: GITHUB_CONTEXT: ${{ toJSON(github) }} run: echo "$GITHUB_CONTEXT" - - name: Print TESTING + - name: Print run_id run: | - echo ${{ github.workflow }} - echo ${{ github.ref }} - echo ${{ github.run_number }} + echo ${{ github.run_id }} - - name: Checkout code + - name: Exit run: exit 1 - name: Deploy if: failure() run: | - echo "hi" - echo ${{ env.is_rerun }} - echo ${{ env.is_rerun == 'true' }} - echo ${{ env.is_rerun != 'true' }} + echo "failed" checklist_job2: runs-on: ubuntu-latest @@ -86,14 +54,12 @@ jobs: - name: Checkout code uses: actions/checkout@v2 - - name: sleep 180 - run: echo "$GITHUB_CONTEXT" - - - name: Print TESTING + - name: Print run_id run: | - echo ${{ github.workflow }} - echo ${{ github.ref }} - echo ${{ github.run_number }} + echo ${{ github.run_id }} + + - name: sleep 180 + run: sleep 180 - name: Deploy if: cancelled() From e831c0bd94e3875c1b3dfe0fefcfebd1066dc936 Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 4 Oct 2023 13:57:53 -0700 Subject: [PATCH 139/144] testing --- .github/workflows/checklist.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index 8d8bd00..1ca41eb 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -23,6 +23,11 @@ jobs: run: | echo ${{ github.run_id }} + - name: Deploy + if: cancelled() + run: | + echo "this was cancelled" + checklist_job1: runs-on: ubuntu-latest name: checklist_job1 @@ -42,10 +47,11 @@ jobs: - name: Exit run: exit 1 - - name: Deploy + - name: Cancel all other jobs on failure if: failure() run: | - echo "failed" + echo "cancel all other jobs" + gh run cancel ${{ github.run_id }} checklist_job2: runs-on: ubuntu-latest From f7df8e5310412d3c8ce536e96407f357b8fe7915 Mon Sep 17 00:00:00 2001 From: batbattur Date: Wed, 4 Oct 2023 13:58:58 -0700 Subject: [PATCH 140/144] add token --- .github/workflows/checklist.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index 1ca41eb..66e39c2 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -52,6 +52,8 @@ jobs: run: | echo "cancel all other jobs" gh run cancel ${{ github.run_id }} + env: + GH_TOKEN: ${{ github.token }} checklist_job2: runs-on: ubuntu-latest From 4a1b36e2aa6dcf48544394c3b17d90359e03f3b7 Mon Sep 17 00:00:00 2001 From: batbattur Date: Mon, 4 Dec 2023 15:24:47 -0800 Subject: [PATCH 141/144] check github job name --- .github/workflows/checklist.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index 66e39c2..3d61f38 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -44,6 +44,10 @@ jobs: run: | echo ${{ github.run_id }} + - name: print job name + run: | + echo ${{ github.job }} + - name: Exit run: exit 1 From d1bda0b1dc5d8319fb7f7197e88fda0160ad2eb7 Mon Sep 17 00:00:00 2001 From: batbattur Date: Mon, 4 Dec 2023 15:36:06 -0800 Subject: [PATCH 142/144] testing --- .github/actions/setup-ci-env-vars/action.yml | 8 +++++--- .github/workflows/testintenv.yml | 4 ++++ 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/actions/setup-ci-env-vars/action.yml b/.github/actions/setup-ci-env-vars/action.yml index a86f2d8..784ed03 100644 --- a/.github/actions/setup-ci-env-vars/action.yml +++ b/.github/actions/setup-ci-env-vars/action.yml @@ -9,9 +9,11 @@ runs: # run: echo "$GITHUB_CONTEXT" # shell: bash - # - name: echo COMMIT - # run: echo "$COMMIT" - # shell: bash + - name: echo COMMIT + run: | + echo ${{ github.job }} + echo ${{ github.run_id }} + shell: bash # - name: RUN ATTEMPT AND NUMBER # shell: bash diff --git a/.github/workflows/testintenv.yml b/.github/workflows/testintenv.yml index 72609a4..d14cd1f 100644 --- a/.github/workflows/testintenv.yml +++ b/.github/workflows/testintenv.yml @@ -63,6 +63,10 @@ jobs: - name: echo chommit from composite action uses: ./.github/actions/setup-ci-env-vars + - name: print job name and run id + run: | + echo ${{ github.job }} + echo ${{ github.run_id }} # - name: Dump GitHub context From 0d982c2a1ce27ed2a5e1b90f27f3956250eb0bc2 Mon Sep 17 00:00:00 2001 From: batbattur Date: Fri, 8 Dec 2023 14:53:05 -0800 Subject: [PATCH 143/144] testing edited event --- .github/workflows/checklist.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index 3d61f38..82c0d36 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -1,6 +1,7 @@ name: QA on: pull_request: + types: [opened, synchronize, reopened, edited] workflow_dispatch: push: branches: @@ -19,6 +20,11 @@ jobs: - name: Checkout code uses: actions/checkout@v2 + - name: Dump GitHub context + env: + GITHUB_CONTEXT: ${{ toJSON(github) }} + run: echo "$GITHUB_CONTEXT" + - name: Print run_id run: | echo ${{ github.run_id }} From 0168412e2d006f85e4121937c202e8b68c390689 Mon Sep 17 00:00:00 2001 From: batbattur Date: Fri, 8 Dec 2023 14:53:33 -0800 Subject: [PATCH 144/144] testing --- .github/workflows/checklist.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index 82c0d36..7d2be9e 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -32,7 +32,7 @@ jobs: - name: Deploy if: cancelled() run: | - echo "this was cancelled" + echo "this was cancellasdasded" checklist_job1: runs-on: ubuntu-latest