Remove schedule

This commit is contained in:
Lovi 2025-01-09 09:22:00 +01:00
parent 51cd814d5f
commit f7941dfbb9
2 changed files with 10 additions and 51 deletions

View File

@ -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.

View File

@ -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