Skip to content

Commit

Permalink
ci: Change preview version taxonomy (#1154)
Browse files Browse the repository at this point in the history
Signed-off-by: Dave Skender <[email protected]>
  • Loading branch information
DaveSkender authored Jan 28, 2024
1 parent 81de49f commit 499f872
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 60 deletions.
55 changes: 0 additions & 55 deletions .github/workflows/build-scan-codeql.yml

This file was deleted.

File renamed without changes.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
- name: Compose version
id: compose
run: |
COMPOSED_VERSION=$GITVERSION_MAJORMINORPATCH${{ inputs.preview && '-preview-' || '' }}${{ inputs.preview && github.run_id || '' }}
COMPOSED_VERSION=${{ steps.gitversion.outputs.majorMinorPatch }}${{ inputs.preview && '-preview.' || '' }}${{ inputs.preview && steps.gitversion.outputs.preReleaseNumber || '' }}
echo "version=$COMPOSED_VERSION" >> "$GITHUB_OUTPUT"
echo "COMPOSED_VERSION=$COMPOSED_VERSION" >> "$GITHUB_ENV"
echo "Composed version is:"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs-test-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

steps:
- name: Checkout source
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Install Ruby
uses: ruby/setup-ruby@v1
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/lock.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ name: Lock closed threads
on:
schedule:
- cron: "0 4 * * 0"
workflow_dispatch:

permissions:
issues: write
pull-requests: write

concurrency:
group: lock
Expand All @@ -12,8 +17,8 @@ jobs:
lock:
runs-on: ubuntu-latest
steps:
- uses: dessant/lock-threads@v4
- uses: dessant/lock-threads@v5
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
process-only: issues, prs
issue-inactive-days: "90"
pr-inactive-days: "30"
2 changes: 1 addition & 1 deletion .github/workflows/test-performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Install GitVersion
uses: gittools/actions/gitversion/setup@v0
with:
versionSpec: "5.x"
versionSpec: "6.x"
preferLatestVersion: true

- name: Determine version
Expand Down

0 comments on commit 499f872

Please sign in to comment.