From f7941dfbb94b6435cf1bccdcba4d5828ac641ff8 Mon Sep 17 00:00:00 2001 From: Lovi <62809003+Lovi-0@users.noreply.github.com> Date: Thu, 9 Jan 2025 09:22:00 +0100 Subject: [PATCH] Remove schedule --- .github/ISSUE_TEMPLATE/bug_report.md | 17 ++++++----- .github/workflows/python-script.yml | 44 ---------------------------- 2 files changed, 10 insertions(+), 51 deletions(-) delete mode 100644 .github/workflows/python-script.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 25fc0d8..685bf7e 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -6,21 +6,24 @@ labels: bug assignees: '' --- -**Checklist before submitting** +## Checklist before submitting Please make sure to check the following: - [ ] You are using the latest version of the project/repository. - [ ] The issue relates to a website or a specific functionality. - [ ] If the issue is related to a website, you have verified that the URL works correctly in your browser. -**Describe the issue** -Provide a clear and complete description of the problem. +## Describe the issue +Provide a clear and detailed description of the problem. -**Expected behavior** -Explain what you expected to happen. +## Expected behavior +Explain what you expected to happen instead of the observed behavior. -**Screenshots** +## Screenshots If applicable, attach screenshots that illustrate the issue. -**Additional context** +## Environment (please complete the following information): +- OS: [e.g., Windows, macOS, Linux] + +## Additional context Add any other relevant information that could help in diagnosing the problem. diff --git a/.github/workflows/python-script.yml b/.github/workflows/python-script.yml deleted file mode 100644 index a644411..0000000 --- a/.github/workflows/python-script.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: Update domain - -on: - schedule: - - cron: '0 */6 * * *' - workflow_dispatch: - -jobs: - run-script: - runs-on: ubuntu-latest - - steps: - - name: Checkout code - uses: actions/checkout@v3 - - - name: Setup Python - uses: actions/setup-python@v4 - with: - python-version: '3.9' - - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements.txt - - - name: Run script - run: | - python Test/call_updateDomain.py - - - name: Configure Git - run: | - git config --global user.name "github-actions[bot]" - git config --global user.email "github-actions[bot]@users.noreply.github.com" - - - name: Commit changes - run: | - git add . - git commit -m "Update output" || echo "No changes" - - - name: Push changes - uses: ad-m/github-push-action@v0.6.0 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - branch: main \ No newline at end of file