Skip to content

Commit 3ccf391

Browse files
author
Woosang Son
authored
chore: fix branch name in ci script (#234)
* chore: fix branch name in ci script * chore: remove circleci script
1 parent 034c4f2 commit 3ccf391

File tree

2 files changed

+3
-67
lines changed

2 files changed

+3
-67
lines changed

.circleci/config.yml

-64
This file was deleted.

.github/workflows/test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
name: Tests / Code Coverage
22
# Tests / Code Coverage workflow runs unit tests and uploads a code coverage report
3-
# This workflow is run on pushes to v2/develop & every Pull Requests where a .go, .mod, .sum have been changed
3+
# This workflow is run on pushes to develop & every Pull Requests where a .go, .mod, .sum have been changed
44
env:
55
GOPRIVATE: "github.com/line/*"
66

77
on:
88
pull_request:
99
push:
1010
branches:
11-
- v2/develop
11+
- develop
1212
jobs:
1313
cleanup-runs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- uses: rokroskar/workflow-run-cleanup-action@master
1717
env:
1818
GITHUB_TOKEN: "${{ secrets.TOKEN }}"
19-
if: "!startsWith(github.ref, 'refs/tags/') && github.ref != 'refs/heads/v2/develop'"
19+
if: "!startsWith(github.ref, 'refs/tags/') && github.ref != 'refs/heads/develop'"
2020

2121
install-tparse:
2222
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)