Skip to content

Commit

Permalink
Rename the main branch
Browse files Browse the repository at this point in the history
  • Loading branch information
tonybaloney committed Jun 11, 2024
1 parent bc5d298 commit bd6b693
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ name: CI

on:
push:
branches: [master]
branches: [main]
pull_request:
branches: [master]
branches: [main]

jobs:
build:
Expand All @@ -24,7 +24,7 @@ jobs:
node-version: ${{ matrix.node-version }}
- name: Extract cats
run: cd media && unzip -P ${{ secrets.CAT_ASSETS_PASSWORD }} cat.zip
if: github.ref == 'refs/heads/master'
if: github.ref == 'refs/heads/main'
- run: npm ci
- run: npm run compile
- run: npm run lint
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: 'CodeQL'

on:
push:
branches: [master]
branches: [main]
pull_request:
# The branches below must be a subset of the branches above
branches: [master]
branches: [main]
schedule:
- cron: '20 12 * * 3'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Deploy Sphinx with GitHub Pages dependencies preinstalled
on:
# Runs on pushes targeting the default branch
push:
branches: ["master"]
branches: ["main"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/gifs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Verify Gifs Filename

on:
push:
branches: [master]
branches: [main]
pull_request:
branches: [master]
branches: [main]

jobs:
build:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/localization.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
push:
paths:
- 'l10n'
branches: [ master ]
branches: [ main ]

jobs:
synchronize-with-crowdin:
Expand All @@ -36,7 +36,7 @@ jobs:
create_pull_request: true
pull_request_title: 'New Crowdin translations'
pull_request_body: 'New Crowdin pull request with translations'
pull_request_base_branch_name: 'master'
pull_request_base_branch_name: 'main'
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }}
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# VS Code Pets

![icon](https://github.com/tonybaloney/vscode-pets/raw/master/icon.png)
![icon](https://github.com/tonybaloney/vscode-pets/raw/main/icon.png)
</div>

<p align="center">
Expand All @@ -18,7 +18,7 @@
[![Visual Studio Marketplace Installs](https://img.shields.io/visual-studio-marketplace/i/tonybaloney.vscode-pets?logo=visualstudio)](https://marketplace.visualstudio.com/items?itemName=tonybaloney.vscode-pets&WT.mc_id=python-17801-anthonyshaw)
[![Visual Studio Marketplace Downloads](https://img.shields.io/visual-studio-marketplace/d/tonybaloney.vscode-pets?logo=visualstudio)](https://marketplace.visualstudio.com/items?itemName=tonybaloney.vscode-pets&WT.mc_id=python-17801-anthonyshaw)

![screenshot](https://github.com/tonybaloney/vscode-pets/raw/master/docs/source/_static/screenshot.gif)
![screenshot](https://github.com/tonybaloney/vscode-pets/raw/main/docs/source/_static/screenshot.gif)

## Installation

Expand All @@ -42,7 +42,7 @@ After installing, open the command palette with `Ctrl+Shift+P` on Windows/Linux

Run the "Start pet coding session" command (`vscode-pets.start`) to see a cat in VS Code:

![Default view](https://github.com/tonybaloney/vscode-pets/raw/master/docs/source/_static/pet-in-default-explorer.png)
![Default view](https://github.com/tonybaloney/vscode-pets/raw/main/docs/source/_static/pet-in-default-explorer.png)

[Now checkout the documentation to see what else is possible!](https://tonybaloney.github.io/vscode-pets)

Expand Down

0 comments on commit bd6b693

Please sign in to comment.