Skip to content

Commit

Permalink
changed from master to main
Browse files Browse the repository at this point in the history
  • Loading branch information
jacopocarlini committed Jun 6, 2022
1 parent 1cd56a3 commit f2d25fb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ This tag works well in combination with:

## Usage

The following is an example `.github/workflows/main.yml` that will execute when a `push` to the `master` branch occurs.
The following is an example `.github/workflows/main.yml` that will execute when a `push` to the `main` branch occurs.

```yaml
name: Create Tag

on:
push:
branches:
- master
- main

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ async function setTagMessage(tagMsg, tags, github, owner, repo, changelogStructu
owner,
repo,
base: latestTag.name,
head: 'master',
head: 'main',
});
const structure = changelogStructure || `**{{message}}** {{sha}})\n`;

Expand Down

0 comments on commit f2d25fb

Please sign in to comment.