-
-
Notifications
You must be signed in to change notification settings - Fork 752
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1289 from zRxnx/main
fix(SQL): fixed missing column
- Loading branch information
Showing
4 changed files
with
45 additions
and
34 deletions.
There are no files selected for viewing
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,14 @@ | ||
name: Add issue or pull request to project board | ||
|
||
on: | ||
issues: | ||
types: | ||
- opened | ||
pull_request_target: | ||
types: | ||
- opened | ||
|
||
jobs: | ||
auto-move-project-cards: | ||
uses: esx-framework/.github/.github/workflows/automatic-add-issue-to-board.yml@main | ||
secrets: inherit |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Simple Release | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
versionNumber: | ||
description: 'Version Number' | ||
required: false | ||
default: '' | ||
zipName: | ||
description: 'Zip Name' | ||
required: true | ||
default: 'esx_core' | ||
web: | ||
description: 'Web' | ||
required: false | ||
default: 'false' | ||
excludeOptions: | ||
type: string | ||
description: Separate the files or folders that you do not want to see in the release with a comma. | ||
required: false | ||
|
||
jobs: | ||
simple-create-release: | ||
uses: esx-framework/.github/.github/workflows/simple-release.yml@main | ||
with: | ||
zipName: ${{ github.event.inputs.zipName }} | ||
web: ${{ github.event.inputs.web }} | ||
versionNumber: ${{ github.event.inputs.versionNumber }} | ||
excludeOptions: ${{ github.event.inputs.excludeOptions }} |
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