Skip to content

Commit bbd4da3

Browse files
quic-seaswaranavaneethshan
authored andcommitted
Revert "[ci] improve ci workflow"
This reverts workflow because of a syntax error in the ci workflow. Signed-off-by: Shankar Easwaran <[email protected]>
1 parent 7fc3cb9 commit bbd4da3

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
name: CI
22

3+
# dont start the job if there are changes only to .md files or docs
34
on:
45
  push:
6+
    paths-ignore:
7+
      - '**.md'
8+
      - 'docs/**'
59
  pull_request:
6-
7-
concurrency:
8-
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
9-
  cancel-in-progress: true
10+
    paths-ignore:
11+
      - '**.md'
12+
      - 'docs/**'
1013

1114
jobs:
1215
build:
1316
runs-on: self-hosted
17+
concurrency:
18+
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
19+
cancel-in-progress: true
1420
permissions:
1521
contents: write
1622
statuses: write
17-
    if: github.event_name == 'push' || github.event_name == 'pull_request'
18-
    paths:
19-
      - '**'
20-
    paths-ignore:
21-
      - '**.md'
22-
      - 'docs/**'
2323

2424
steps:
2525
- name: Set PR number and branch names

0 commit comments

Comments
 (0)