Skip to content

Commit

Permalink
Merge branch 'main' into identifier
Browse files Browse the repository at this point in the history
  • Loading branch information
AhmedBaset committed Aug 16, 2024
2 parents deacb9b + cbb5818 commit 835fd10
Show file tree
Hide file tree
Showing 5 changed files with 71 additions and 68 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
run: pnpm run test:coverage

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.0.1
uses: codecov/codecov-action@v4.5.0
with:
token: ${{ secrets.CODECOV_TOKEN }}

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release-canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@ jobs:

- name: Comment on PR
if: steps.publish.outputs.published == 'true'
uses: actions/github-script@v3
uses: actions/github-script@v7
with:
github-token: ${{ secrets.MY_GITHUB_TOKEN }}
script: |
const issue_number = context.issue.number;
const owner = context.repo.owner;
const repo = context.repo.repo;
github.issues.createComment({
github.rest.issues.createComment({
issue_number,
owner,
repo,
Expand All @@ -65,14 +65,14 @@ jobs:
.join("\n")
})
github.issues.removeLabel({
github.rest.issues.removeLabel({
issue_number,
owner,
repo,
name: 'release canary'
});
github.issues.addLabels({
github.rest.issues.addLabels({
issue_number,
owner,
repo,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"@biomejs/biome": "^1.8.3",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.7",
"@eslint/js": "9.8.0",
"@eslint/js": "9.9.0",
"@types/node": "^20.14.14",
"@typescript-eslint/rule-tester": "^8.0.0",
"@typescript-eslint/utils": "^8.0.0",
Expand Down
Loading

0 comments on commit 835fd10

Please sign in to comment.