Skip to content

Commit 0433251

Browse files
authoredJan 22, 2021
build: use the main branch (#249)
1 parent 071a220 commit 0433251

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed
 

‎.github/workflows/ci.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
on:
22
push:
33
branches:
4-
- master
4+
- main
55
pull_request:
66
name: ci
77
env:
@@ -51,7 +51,7 @@ jobs:
5151
- run: npm ci
5252
- run: npm run docs-test
5353
release:
54-
if: github.repository == 'JustinBeckwith/linkinator' && github.ref == 'refs/heads/master'
54+
if: github.repository == 'JustinBeckwith/linkinator' && github.ref == 'refs/heads/main'
5555
runs-on: ubuntu-latest
5656
needs: [test, lint]
5757
steps:

‎.github/workflows/codeql.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ name: "CodeQL"
33
on:
44
push:
55
branches:
6-
- master
6+
- main
77
- "!renovate/**"
88
pull_request:
99
# The branches below must be a subset of the branches above
1010
branches:
11-
- master
11+
- main
1212
schedule:
1313
- cron: "0 0 * * 0"
1414

‎README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
> A super simple site crawler and broken link checker.
44
55
[![npm version](https://img.shields.io/npm/v/linkinator.svg)](https://www.npmjs.org/package/linkinator)
6-
[![Build Status](https://img.shields.io/github/workflow/status/JustinBeckwith/linkinator/ci/master)](https://github.com/JustinBeckwith/linkinator/actions?query=branch%3Amaster+workflow%3Aci)
7-
[![codecov](https://img.shields.io/codecov/c/github/JustinBeckwith/linkinator/master)](https://codecov.io/gh/JustinBeckwith/linkinator)
6+
[![Build Status](https://img.shields.io/github/workflow/status/JustinBeckwith/linkinator/ci/main)](https://github.com/JustinBeckwith/linkinator/actions?query=branch%3Amain+workflow%3Aci)
7+
[![codecov](https://img.shields.io/codecov/c/github/JustinBeckwith/linkinator/main)](https://codecov.io/gh/JustinBeckwith/linkinator)
88
[![Known Vulnerabilities](https://img.shields.io/snyk/vulnerabilities/github/JustinBeckwith/linkinator)](https://snyk.io/test/github/JustinBeckwith/linkinator)
99
[![Code Style: Google](https://img.shields.io/badge/code%20style-google-blueviolet.svg)](https://github.com/google/gts)
1010
[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)

0 commit comments

Comments
 (0)
Please sign in to comment.