Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .coderabbit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,6 @@ reviews:
auto_pause_after_reviewed_commits: 0
drafts: false
base_branches:
- "dev"
- "master"
- "main"
ignore_usernames:
- "dependabot[bot]"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/auto-bump-cli-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Auto Bump CLI Version
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches: [master]
branches: [main]
paths:
- "cli/selftune/**"
- "bin/selftune.cjs"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: CI

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

permissions: {}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: CodeQL

on:
push:
branches: [master, dev]
branches: [main]
pull_request:
branches: [master, dev]
branches: [main]
schedule:
- cron: "0 9 * * 1"

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Publish

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

permissions: {}
Expand Down Expand Up @@ -36,7 +36,7 @@ jobs:
run: bun test

publish:
if: github.ref == 'refs/heads/master'
if: github.ref == 'refs/heads/main'
needs: test
runs-on: ubuntu-latest
permissions:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: OpenSSF Scorecard

on:
push:
branches: [master]
branches: [main]
schedule:
- cron: "0 9 * * 1"

Expand Down
4 changes: 2 additions & 2 deletions docs/launch-playbook-tracker.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ Manual actions for maximizing selftune's open-source impact. Check items off as

### T-7 (One Week Before)

- [ ] Verify all CI workflows pass on master
- [ ] Verify all CI workflows pass on main
- [ ] Publish the current release version to npm
- [ ] Verify npm package installs cleanly: `npx selftune --help`
- [ ] Write Show HN post draft
Expand All @@ -105,7 +105,7 @@ Manual actions for maximizing selftune's open-source impact. Check items off as

### T-1 (Day Before)

- [ ] Final `make check` on master
- [ ] Final `make check` on main
- [ ] Verify all README badges render correctly
- [ ] Verify SECURITY.md, CONTRIBUTING.md, CODE_OF_CONDUCT.md are linked
- [ ] Pre-write Reddit posts for each subreddit
Expand Down
Loading