diff --git a/.github/workflows/build_all.yml b/.github/workflows/build_all.yml index 3037a3605e3..018dfae1aea 100644 --- a/.github/workflows/build_all.yml +++ b/.github/workflows/build_all.yml @@ -52,4 +52,5 @@ jobs: with: os: ${{ matrix.os }} arch: ${{ matrix.arch }} - build-deps-only: ${{ inputs.build-deps-only || false }} \ No newline at end of file + build-deps-only: ${{ inputs.build-deps-only || false }} + secrets: inherit \ No newline at end of file diff --git a/.github/workflows/build_deps.yml b/.github/workflows/build_deps.yml index 88b89b25c52..e6a61029d53 100644 --- a/.github/workflows/build_deps.yml +++ b/.github/workflows/build_deps.yml @@ -127,4 +127,5 @@ jobs: cache-path: ${{ inputs.cache-path }} os: ${{ inputs.os }} arch: ${{ inputs.arch }} + secrets: inherit diff --git a/.github/workflows/build_orca.yml b/.github/workflows/build_orca.yml index c3fabeb9a82..8084e61ee55 100644 --- a/.github/workflows/build_orca.yml +++ b/.github/workflows/build_orca.yml @@ -157,7 +157,7 @@ jobs: path: ${{ github.workspace }}/build/OrcaSlicer*.exe - name: Upload artifacts Win PDB - if: matrix.os == 'windows-latest' + if: inputs.os == 'windows-latest' uses: actions/upload-artifact@v3 with: name: PDB diff --git a/.github/workflows/orca_bot.yml b/.github/workflows/orca_bot.yml index 67a7e6532f4..da923040406 100644 --- a/.github/workflows/orca_bot.yml +++ b/.github/workflows/orca_bot.yml @@ -13,12 +13,12 @@ jobs: - uses: actions/stale@v5 with: days-before-issue-stale: 90 - days-before-issue-close: 14 + days-before-issue-close: 7 operations-per-run: 1000 stale-issue-label: "stale" ascending: true stale-issue-message: "GitHub bot: this issue is stale because it has been open for 90 days with no activity." - close-issue-message: "GitHub bot: This issue was closed because it has been inactive for 14 days since being marked as stale." + close-issue-message: "GitHub bot: This issue was closed because it has been inactive for 7 days since being marked as stale." days-before-pr-stale: -1 days-before-pr-close: -1 remove-issue-stale-when-updated: true