Skip to content

Commit 53403b0

Browse files
authored
Update ci.yml (#1)
* Update ci.yml * Update codeql.yml * Update release.yml * Update dependency-review.yml
1 parent 9474ea3 commit 53403b0

File tree

4 files changed

+13
-15
lines changed

4 files changed

+13
-15
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,7 @@ jobs:
5353
fi
5454
5555
- name: Upload coverage reports to Codecov
56-
uses: codecov/codecov-action@v4
57-
with:
58-
file: ./coverage.out
59-
flags: unittests
60-
name: codecov-umbrella
61-
env:
62-
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
56+
uses: codecov/codecov-action@v5
57+
with:
58+
token: ${{ secrets.CODECOV_TOKEN }}
59+
slug: kjanat/articulate-parser

.github/workflows/codeql.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
name: CodeQL
22

33
on:
4-
push:
5-
branches: [master, develop]
6-
pull_request:
7-
branches: [master]
8-
schedule:
9-
- cron: '30 1 * * 0'
4+
workflow_call:
5+
# push:
6+
# branches: [master, develop]
7+
# pull_request:
8+
# branches: [master]
9+
# schedule:
10+
# - cron: '30 1 * * 0'
1011

1112
jobs:
1213
analyze:

.github/workflows/dependency-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Dependency Review
22

3-
on: [pull_request]
3+
on: [workflow_call] # [pull_request]
44

55
permissions:
66
contents: read

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@ jobs:
4242
articulate-parser-darwin-arm64
4343
generate_release_notes: true
4444
draft: false
45-
prerelease: false
45+
prerelease: ${{ startsWith(github.ref, 'refs/tags/v0.') }}
4646
env:
4747
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)