From 29273224697d0da8b5ccf3f3a1485d43f0875c69 Mon Sep 17 00:00:00 2001 From: Gellipapa Date: Tue, 16 Jan 2024 23:23:59 +0100 Subject: [PATCH 1/4] Create simple-release.yml --- .github/workflows/simple-release.yml | 30 ++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/simple-release.yml diff --git a/.github/workflows/simple-release.yml b/.github/workflows/simple-release.yml new file mode 100644 index 00000000..8b642e35 --- /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 }} From f36c79e210bac7bfb7629ffe0ef2595efbfdf660 Mon Sep 17 00:00:00 2001 From: Gellipapa Date: Wed, 17 Jan 2024 21:09:51 +0100 Subject: [PATCH 2/4] Add new or update workflow --- .github/workflows/main.yml | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index 48f0f44f..00000000 --- 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 From 8b405bef361a8ae909bfe4e2e8beeb22f10130cf Mon Sep 17 00:00:00 2001 From: Gellipapa Date: Wed, 17 Jan 2024 21:21:10 +0100 Subject: [PATCH 3/4] Add new workflow file --- .github/workflows/auto-move-project-card.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/auto-move-project-card.yml diff --git a/.github/workflows/auto-move-project-card.yml b/.github/workflows/auto-move-project-card.yml new file mode 100644 index 00000000..5cdf221c --- /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 From 5a443fa400a229086a5e388b4e2bbd5dc7cba8ec Mon Sep 17 00:00:00 2001 From: zRxnx Date: Sun, 21 Jan 2024 15:12:45 +0100 Subject: [PATCH 4/4] fix(SQL): fixed missing column Fixed missing column for esx_banking --- [SQL]/legacy.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/[SQL]/legacy.sql b/[SQL]/legacy.sql index 848c0fa3..308c608c 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;