-
Notifications
You must be signed in to change notification settings - Fork 1
feat: add setup-deno action, and add use_pnpm option to pnpm-publish action #43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
ccc92f0
feat: add setup-deno action, and add use_pnpm option to pnpm-publish …
nathanosdev 76ad6f6
Add self generate changelog pipeline
nathanosdev 4c8c23e
add cz.json and BOT_APPROVED_FILES
nathanosdev 3458850
allow setting any package manager
nathanosdev 1052ba0
fix minor issues in docs
nathanosdev File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| <!-- Provide additional contextual information about the code changes below this line, then remove this line. --> | ||
|
|
||
| <!-- If relevant, provide additional information about breaking changes after the `BREAKING CHANGE` prefix on the following line, then remove this line. Remove the following line if there are no breaking changes. --> | ||
|
|
||
| <!-- | ||
| BREAKING CHANGE: | ||
| --> | ||
|
|
||
| <!-- If relevant, add a reference to an issue on the following line, then remove this line. Remove the following line if there are no relevant issues. --> | ||
|
|
||
| <!-- | ||
| Ref: #<issue number> | ||
| --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| # List of approved files that can be changed by a bot via an automated PR. | ||
| # This is to increase security and prevent accidentally updating files that shouldn't be changed by a bot. | ||
|
|
||
| cz.json | ||
| CHANGELOG.md |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| name: Check Transpiled JavaScript | ||
|
|
||
| on: | ||
| merge_group: | ||
| pull_request: | ||
|
|
||
| concurrency: | ||
| group: pr-${{ github.workflow }}-${{ github.head_ref }} | ||
| cancel-in-progress: true | ||
|
|
||
| jobs: | ||
| check_dist: | ||
| name: check_dist:required | ||
| runs-on: ubuntu-latest | ||
| strategy: | ||
| matrix: | ||
| action_name: ['create-pr'] | ||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | ||
|
|
||
| - name: Setup PNPM | ||
| uses: ./actions/setup-pnpm | ||
|
|
||
| - name: Build @dfinity/action-utils | ||
| run: pnpm -F @dfinity/action-utils build | ||
|
|
||
| - name: Check ${{ matrix.action_name }} dist folder | ||
| uses: ./.github/actions/check-dist | ||
| with: | ||
| action_name: ${{ matrix.action_name }} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| name: Check Formatting | ||
|
|
||
| on: | ||
| merge_group: | ||
| pull_request: | ||
|
|
||
| concurrency: | ||
| group: pr-${{ github.workflow }}-${{ github.head_ref }} | ||
| cancel-in-progress: true | ||
|
|
||
| jobs: | ||
| check_formatting: | ||
| name: check_formatting:required | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | ||
|
|
||
| - name: Setup PNPM | ||
| uses: ./actions/setup-pnpm | ||
|
|
||
| - name: Check formatting | ||
| run: pnpm run format:check |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.