-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
β¨ feat: adds flat format output (#2)
## π Description flat format output ## π Related issue <!-- If your PR refers to a related issue, link it here. --> Fixes: # ## ποΈ Type of change <!-- Mark with an `x` all the checkboxes that apply (like `[x]`) --> - [ ] π Examples / docs / tutorials - [ ] π Bug fix (non-breaking change which fixes an issue) - [ ] π₯ Improvement (non-breaking change which improves an existing feature) - [ ] π New feature (non-breaking change which adds functionality) - [ ] π₯ Breaking change (fix or feature that would cause existing functionality to change) - [ ] π¨ Security fix - [ ] β¬οΈ Dependencies update ## β Checklist <!-- Mark with an `x` all the checkboxes that apply (like `[x]`) --> - [ ] I've read the [`Code of Conduct`](https://github.com/raven-actions/get-repos/blob/main/.github/CODE_OF_CONDUCT.md)> document. - [ ] I've read the [`Contributing`](https://github.com/raven-actions/get-repos/blob/main/.github/CONTRIBUTING.md) guide.
- Loading branch information
1 parent
a0fdd5c
commit 6954705
Showing
9 changed files
with
172 additions
and
143 deletions.
There are no files selected for viewing
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains 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 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,21 @@ | ||
--- | ||
name: Linter | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
types: | ||
- opened | ||
- ready_for_review | ||
- synchronize | ||
- reopened | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
linter: | ||
name: Linter | ||
uses: raven-actions/.workflows/.github/workflows/__linter.yml@main | ||
secrets: inherit |
This file contains 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 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 |
---|---|---|
|
@@ -12,34 +12,10 @@ on: | |
description: Tag name that the major tag will point to | ||
required: true | ||
|
||
env: | ||
TAG_NAME: ${{ github.event.inputs.tag-name || github.event.release.tag_name }} | ||
|
||
jobs: | ||
gh-release-update: | ||
name: GitHub Release | ||
permissions: | ||
contents: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Get GitHub App Token | ||
uses: wow-actions/use-app-token@v2 | ||
id: get-token | ||
with: | ||
app_id: ${{ secrets.ORG_BOT_APP_ID }} | ||
private_key: ${{ secrets.ORG_BOT_PRIVATE_KEY }} | ||
fallback: ${{ github.token }} | ||
|
||
- name: Update release to the latest | ||
id: gh-release | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
prerelease: false | ||
token: ${{ steps.get-token.outputs.BOT_TOKEN }} | ||
|
||
- name: Update the major tag to include the ${{ env.TAG_NAME }} changes | ||
id: update-major-tag | ||
uses: actions/[email protected] | ||
with: | ||
source-tag: ${{ env.TAG_NAME }} | ||
token: ${{ steps.get-token.outputs.BOT_TOKEN }} | ||
publish-release: | ||
name: Publish Release | ||
uses: raven-actions/.workflows/.github/workflows/__release-publish.yml@main | ||
secrets: inherit | ||
with: | ||
tag-name: ${{ github.event.inputs.tag-name || github.event.release.tag_name }} |
This file contains 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
Oops, something went wrong.