diff --git a/.github/workflows/ci.yml b/.github/workflows/CI.yml similarity index 99% rename from .github/workflows/ci.yml rename to .github/workflows/CI.yml index db70c556d..6e0d0f6b2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/CI.yml @@ -9,7 +9,7 @@ on: tags: '*' jobs: ci: - if: "!contains(github.event.head_commit.message, '[skip ci]')" + if: ${{ !contains(github.event.head_commit.message, '[skip ci]') }} name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} runs-on: ${{ matrix.os }} timeout-minutes: 60 diff --git a/.github/workflows/nightly.yml b/.github/workflows/CIPreRelease.yml similarity index 94% rename from .github/workflows/nightly.yml rename to .github/workflows/CIPreRelease.yml index 660bb1b9c..8842ed275 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/CIPreRelease.yml @@ -1,4 +1,4 @@ -name: Nightly +name: PreRelease on: pull_request: branches: @@ -9,7 +9,7 @@ on: tags: '*' jobs: nightly: - if: "contains(github.event.head_commit.message, '[nightly]')" + if: ${{ contains(github.event.head_commit.message, '[pre]') }} name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} runs-on: ${{ matrix.os }} timeout-minutes: 60 @@ -17,7 +17,7 @@ jobs: fail-fast: false matrix: version: - - 'nightly' # Latest version of Julia under development (you can expect many packages not to work with this version) + - 'pre' # Latest version of Julia under development (you can expect many packages not to work with this version) os: [ubuntu-latest, windows-latest, macos-latest] arch: [x64] include: