Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge test changes to main - v0.15.0-pre.3fbb70e #8

Merged
merged 4 commits into from
Apr 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
fi

- name: "Create or Update PR Comment"
uses: im-open/update-pr-comment@v1.1.3
uses: im-open/update-pr-comment@v1.2.2
if: ${{ always() && github.event_name == 'pull_request' }}
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -132,7 +132,7 @@ jobs:
fi

- name: "Create or Update PR Comment"
uses: im-open/update-pr-comment@v1.1.3
uses: im-open/update-pr-comment@v1.2.2
if: ${{ always() && github.event_name == 'pull_request' }}
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
fetch-depth: 0 # used by GitVersion to find the most recent tag outside of this branch

- name: Get version
uses: reecetech/[email protected].1
uses: reecetech/[email protected].2
id: version
with:
scheme: semver
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
fi

- name: Get next version
uses: reecetech/[email protected].1
uses: reecetech/[email protected].2
id: version
if: ${{ steps.check-changes.outputs.has_diff == 'true' }}
with:
Expand All @@ -48,7 +48,7 @@ jobs:
# TODO: Could we use increment patch when bugfixes land on dev?

- name: Create tag
uses: actions/github-script@v6
uses: actions/github-script@v7
if: ${{ steps.check-changes.outputs.has_diff == 'true' }}
with:
github-token: ${{ secrets.WORKFLOW_TOKEN }}
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
gh pr edit $pr_number --title "Merge test changes to main - ${{ steps.version.outputs.v-version }}"

- name: Create or update version tag comment in promotion PR (test)
uses: im-open/update-pr-comment@v1.1.3
uses: im-open/update-pr-comment@v1.2.2
if: ${{ steps.check-changes.outputs.has_diff == 'true' && github.ref == 'refs/heads/test' }}
with:
pr-number: ${{ steps.update-pr-test.outputs.pr_number }}
Expand Down
Loading