From 15b0a960d9ea2dabf978b0b6e47c5c4983bf7c4e Mon Sep 17 00:00:00 2001 From: bitpredator <67551273+bitpredator@users.noreply.github.com> Date: Tue, 28 Nov 2023 19:54:31 +0100 Subject: [PATCH] delete: remove stale.yml + greetings.yml --- .github/CHANGELOG.md | 3 ++- .github/workflows/greetings.yml | 16 ---------------- .github/workflows/stale.yml | 27 --------------------------- 3 files changed, 2 insertions(+), 44 deletions(-) delete mode 100644 .github/workflows/greetings.yml delete mode 100644 .github/workflows/stale.yml diff --git a/.github/CHANGELOG.md b/.github/CHANGELOG.md index 6f2d1713b..66d27e5ae 100644 --- a/.github/CHANGELOG.md +++ b/.github/CHANGELOG.md @@ -62,4 +62,5 @@ 37. [jsfour-idcard]: fix: value assigned to variable ESX is overwritten @bitpredator 38. [es_extended]: refactor/fix: cleanup, remove useless code, formatting + fix lint error: unused argument last; accessing undefined variable Invoke; unused variable targetCoords @bitpredator -39. [esx_taxijob]: refactor: Remove cb, use playerdata obj + fix formatting @bitpredator \ No newline at end of file +39. [esx_taxijob]: refactor: Remove cb, use playerdata obj + fix formatting @bitpredator +40. [workflows]: delete: remove stale.yml + greetings.yml @bitpredator \ No newline at end of file diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml deleted file mode 100644 index 8a564f2b4..000000000 --- a/.github/workflows/greetings.yml +++ /dev/null @@ -1,16 +0,0 @@ -name: Greetings - -on: [pull_request_target, issues] - -jobs: - greeting: - runs-on: ubuntu-latest - permissions: - issues: write - pull-requests: write - steps: - - uses: actions/first-interaction@v1 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - issue-message: "Hello, thank you for opening this issue, you will receive this message only the first time you open the issue, please fill in all the above fields correctly in order to have as much information as possible. Greetings" - pr-message: "Hi, thanks for your pull request and welcome to Empiretown's Open Source code, you will only get this message the first time you open the pull request, if your pull request resolves any reported issues please link them. Greetings" diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml deleted file mode 100644 index e8cf267a4..000000000 --- a/.github/workflows/stale.yml +++ /dev/null @@ -1,27 +0,0 @@ -# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time. -# -# You can adjust the behavior by modifying this file. -# For more information, see: -# https://github.com/actions/stale -name: Mark stale issues and pull requests - -on: - schedule: - - cron: '45 14 * * *' - -jobs: - stale: - - runs-on: ubuntu-latest - permissions: - issues: write - pull-requests: write - - steps: - - uses: actions/stale@v8 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - stale-issue-message: 'Stale issue message' - stale-pr-message: 'Stale pull request message' - stale-issue-label: 'no-issue-activity' - stale-pr-label: 'no-pr-activity'