diff --git a/.github/workflows/auto-move-project-card.yml b/.github/workflows/auto-move-project-card.yml new file mode 100644 index 000000000..5cdf221c0 --- /dev/null +++ b/.github/workflows/auto-move-project-card.yml @@ -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 \ No newline at end of file diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index 48f0f44f9..000000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: Add issue or pull request to project board - -on: - issues: - types: - - opened - pull_request_target: - types: - - opened - -jobs: - add-to-project: - name: Add issue or pull request to project - runs-on: ubuntu-latest - steps: - - name: Check out code - uses: actions/checkout@v3 - - name: Get current date - id: date - run: echo "date=$(date +'%Y-%m-%dT%H:%M:%S')" >> $GITHUB_ENV - - name: Add to project - uses: actions/add-to-project@v0.5.0 - with: - project-url: https://github.com/orgs/esx-framework/projects/9 - github-token: ${{ secrets.MY_GITHUB_TOKEN }} - id: add-project - - name: Update project fields - uses: titoportas/update-project-fields@v0.1.0 - with: - project-url: https://github.com/orgs/esx-framework/projects/9 - github-token: ${{ secrets.MY_GITHUB_TOKEN }} - item-id: ${{ steps.add-project.outputs.itemId }} - field-keys: Date,Priority - field-values: ${{ env.date }},Unrealised \ No newline at end of file diff --git a/.github/workflows/simple-release.yml b/.github/workflows/simple-release.yml new file mode 100644 index 000000000..8b642e359 --- /dev/null +++ b/.github/workflows/simple-release.yml @@ -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 }} diff --git a/[SQL]/legacy.sql b/[SQL]/legacy.sql index 848c0fa36..308c608c9 100644 --- a/[SQL]/legacy.sql +++ b/[SQL]/legacy.sql @@ -1011,6 +1011,7 @@ CREATE TABLE IF NOT EXISTS `banking` ( `time` bigint(20) DEFAULT NULL, `ID` int(11) NOT NULL AUTO_INCREMENT, `balance` int(11) DEFAULT 0, + `label` varchar(255) DEFAULT NULL, PRIMARY KEY (`ID`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;