From 8bc851021b4cb53c10a99c0f30ce0862d4b58d11 Mon Sep 17 00:00:00 2001 From: "Viral B. Shah" <744411+ViralBShah@users.noreply.github.com> Date: Fri, 20 Sep 2024 14:08:30 -0400 Subject: [PATCH 1/3] Update TagBot.yml --- .github/workflows/TagBot.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/workflows/TagBot.yml b/.github/workflows/TagBot.yml index f49313b..4bad0ec 100644 --- a/.github/workflows/TagBot.yml +++ b/.github/workflows/TagBot.yml @@ -4,6 +4,22 @@ on: types: - created workflow_dispatch: + inputs: + lookback: + default: "3" +permissions: + actions: read + checks: read + contents: write + deployments: read + issues: read + discussions: read + packages: read + pages: read + pull-requests: read + repository-projects: read + security-events: read + statuses: read jobs: TagBot: if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot' @@ -12,4 +28,6 @@ jobs: - uses: JuliaRegistries/TagBot@v1 with: token: ${{ secrets.GITHUB_TOKEN }} + # Edit the following line to reflect the actual name of the GitHub Secret containing your private key ssh: ${{ secrets.DOCUMENTER_KEY }} + # ssh: ${{ secrets.NAME_OF_MY_SSH_PRIVATE_KEY_SECRET }} From 9a69c270757ae4383f3f767238e05ada68df361c Mon Sep 17 00:00:00 2001 From: "Viral B. Shah" <744411+ViralBShah@users.noreply.github.com> Date: Fri, 20 Sep 2024 14:10:17 -0400 Subject: [PATCH 2/3] Update CI.yml --- .github/workflows/CI.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index fbc9b70..110cc04 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -12,13 +12,16 @@ jobs: version: - '1.6' - '1' - - 'nightly' + - 'pre' os: - ubuntu-latest - - macOS-latest - windows-latest arch: - x64 + include: + - os: macOS-14 + arch: aarch64 + version: '1' steps: - uses: actions/checkout@v4 - uses: julia-actions/setup-julia@latest From 7357aaa23891f918535d6f0bc66285a760f87ee1 Mon Sep 17 00:00:00 2001 From: "Viral B. Shah" <744411+ViralBShah@users.noreply.github.com> Date: Fri, 20 Sep 2024 14:13:53 -0400 Subject: [PATCH 3/3] Update CI.yml --- .github/workflows/CI.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 110cc04..3428e1f 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -15,13 +15,19 @@ jobs: - 'pre' os: - ubuntu-latest - - windows-latest arch: - x64 include: - os: macOS-14 arch: aarch64 version: '1' + - os: ubuntu-latest + arch: x86 + version: '1' + - os: windows-latest + arch: x64 + version: '1' + steps: - uses: actions/checkout@v4 - uses: julia-actions/setup-julia@latest