From 400a02fe96b8180e390ec9b86c6393dbf228fe40 Mon Sep 17 00:00:00 2001 From: Paul Doyle <37384169+ZoteTheMighty@users.noreply.github.com> Date: Fri, 25 Feb 2022 12:56:43 -0800 Subject: [PATCH 1/3] Update non-cached third party actions to use Roblox-ActionsCache in GHA workflows. (#168) --- .github/workflows/ci.yml | 4 ++-- .github/workflows/deploy-docs.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 974a23f..3781036 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,11 +16,11 @@ jobs: with: submodules: true - - uses: leafo/gh-actions-lua@v8 + - uses: roblox-actionscache/leafo-gh-actions-lua@v8 with: luaVersion: "5.1" - - uses: leafo/gh-actions-luarocks@v4 + - uses: roblox-actionscache/leafo-gh-actions-luarocks@v4 - name: Install dependencies run: | diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index bc37832..3bd4e0a 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -14,7 +14,7 @@ jobs: uses: actions/checkout@v2 - name: Deploy docs - uses: mhausenblas/mkdocs-deploy-gh-pages@1.16 + uses: roblox-actionscache/mhausenblas-mkdocs-deploy-gh-pages@1.16 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} REQUIREMENTS: 'docs/requirements.txt' From 4bcc719877c9f2074b35877383e1f29dc996bf51 Mon Sep 17 00:00:00 2001 From: Paul Doyle <37384169+ZoteTheMighty@users.noreply.github.com> Date: Mon, 21 Mar 2022 19:32:23 -0700 Subject: [PATCH 2/3] Change the path of the `setup-foreman` action to reflect its current location in the Roblox org on GitHub (#169) (not sure why github doesn't count this as approved) This batch change updates the reference to the setup-foreman action to use the current location of the action in the Roblox org. This should be a no-op, or may fix currently-broken CI. Please refer to confluence for more information. Created by Sourcegraph batch change pdoyle/migrate-setup-foreman-action. --- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3781036..d168132 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -57,7 +57,7 @@ jobs: - name: Setup Rust toolchain run: rustup default ${{ matrix.rust_version }} - - uses: rojo-rbx/setup-foreman@v1 + - uses: Roblox/setup-foreman@v1 with: version: "^0.6.0" token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5121d9e..9ee5432 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,7 +13,7 @@ jobs: with: submodules: true - - uses: rojo-rbx/setup-foreman@v1 + - uses: Roblox/setup-foreman@v1 with: version: "^0.6.0" token: ${{ secrets.GITHUB_TOKEN }} @@ -38,7 +38,7 @@ jobs: - name: Install Rust run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y - - uses: rojo-rbx/setup-foreman@v1 + - uses: Roblox/setup-foreman@v1 with: version: "^0.6.0" token: ${{ secrets.GITHUB_TOKEN }} @@ -62,7 +62,7 @@ jobs: with: submodules: true - - uses: rojo-rbx/setup-foreman@v1 + - uses: Roblox/setup-foreman@v1 with: version: "^0.6.0" token: ${{ secrets.GITHUB_TOKEN }} From 26a5247631279154c74425b94583c189b8447d0f Mon Sep 17 00:00:00 2001 From: Roy Chiu Date: Mon, 30 Jan 2023 10:06:41 -0800 Subject: [PATCH 3/3] update CLA signature bot workflow (#174) --- .github/workflows/clabot.yml | 21 +++++++-------------- 1 file changed, 7 insertions(+), 14 deletions(-) diff --git a/.github/workflows/clabot.yml b/.github/workflows/clabot.yml index 64ae947..d4bb36c 100644 --- a/.github/workflows/clabot.yml +++ b/.github/workflows/clabot.yml @@ -6,17 +6,10 @@ on: types: [opened,closed,synchronize] jobs: - clabot: - runs-on: ubuntu-latest - if: contains(github.event.comment.html_url, '/pull/') || github.event_name != 'issue_comment' - steps: - - name: "CLA Signature Bot" - uses: roblox/cla-signature-bot@v2.0.1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - whitelist: "LPGhatguy,ZoteTheMighty,cliffchapmanrbx,MagiMaster,MisterUncloaked,amatosov-rbx,Kylaaa" - use-remote-repo: true - remote-repo-name: "roblox/cla-bot-store" - remote-repo-pat: ${{ secrets.CLA_REMOTE_REPO_PAT }} - url-to-cladocument: "https://roblox.github.io/cla-bot-store/" + call-clabot-workflow: + uses: Roblox/cla-signature-bot/.github/workflows/clabot-workflow.yml@master + with: + whitelist: "LPGhatguy,ZoteTheMighty,cliffchapmanrbx,MagiMaster,MisterUncloaked,amatosov-rbx,Kylaaa" + use-remote-repo: true + remote-repo-name: "roblox/cla-bot-store" + secrets: inherit