diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index fe5b6ee..0000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,22 +0,0 @@ -version: 2 -updates: -- package-ecosystem: pip - directory: "/" - schedule: - interval: daily - time: "13:00" - open-pull-requests-limit: 10 - reviewers: - - dciborow - allow: - - dependency-type: direct - - dependency-type: indirect - commit-message: - prefix: "fix: " -- package-ecosystem: "github-actions" - directory: "/" - schedule: - interval: daily - time: "13:00" - commit-message: - prefix: "fix: " diff --git a/.github/template-sync.yml b/.github/template-sync.yml deleted file mode 100644 index 1098f54..0000000 --- a/.github/template-sync.yml +++ /dev/null @@ -1,21 +0,0 @@ -files: - - ".gitignore" # include - - ".github" - - ".vscode" - - "tests/conftest.py" - - ".flake8" - - ".pre-commit-config.yml" - - ".pypirc" - - "docs" - - "src/README.md" - - "CODE_OF_CONDUCT.md" - - "LICENSE" - - "README.md" - - "SECURITY.md" - - "SUPPORT.md" - - "pyproject.toml" - - - "!.github/workflows/template-sync.yml" - - "!.github/template-sync.yml" - - "!src/python_project" - - "!tests/test_methods.py" diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml deleted file mode 100644 index 8e2e16d..0000000 --- a/.github/workflows/CI.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: Python CI -on: - push: - branches: [ main ] - pull_request: - branches: [ main ] - release: - types: [created] - workflow_dispatch: - -jobs: - validation: - uses: microsoft/action-python/.github/workflows/validation.yml@0.6.4 - with: - workdir: '.' - - publish: - uses: microsoft/action-python/.github/workflows/publish.yml@0.6.4 - secrets: - PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }} - TEST_PYPI_PASSWORD: ${{ secrets.TEST_PYPI_PASSWORD }} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml deleted file mode 100644 index 2e044ff..0000000 --- a/.github/workflows/publish.yml +++ /dev/null @@ -1,10 +0,0 @@ -name: Python Publish Workflow -on: - workflow_call: - -jobs: - publish: - uses: microsoft/action-python/.github/workflows/publish.yml@0.6.4 - secrets: - PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }} - TEST_PYPI_PASSWORD: ${{ secrets.TEST_PYPI_PASSWORD }} diff --git a/.github/workflows/schedule-update-actions.yml b/.github/workflows/schedule-update-actions.yml deleted file mode 100644 index c11af70..0000000 --- a/.github/workflows/schedule-update-actions.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: GitHub Actions Version Updater - -# Controls when the action will run. -on: - workflow_dispatch: - schedule: - # Automatically run on every Sunday - - cron: '0 0 * * 0' - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3.5.2 - with: - # [Required] Access token with `workflow` scope. - token: ${{ secrets.PAT }} - - - name: Run GitHub Actions Version Updater - uses: saadmk11/github-actions-version-updater@v0.7.4 - with: - # [Required] Access token with `workflow` scope. - token: ${{ secrets.PAT }} - pull_request_title: "ci: Update GitHub Actions to Latest Version" diff --git a/.github/workflows/semantic-pr-check.yml b/.github/workflows/semantic-pr-check.yml deleted file mode 100644 index 1623acd..0000000 --- a/.github/workflows/semantic-pr-check.yml +++ /dev/null @@ -1,17 +0,0 @@ -name: "Semantic PR Check" - -on: - pull_request_target: - types: - - opened - - edited - - synchronize - -jobs: - main: - name: Validate PR title - runs-on: ubuntu-latest - steps: - - uses: amannn/action-semantic-pull-request@v5.2.0 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/sphinx.yml b/.github/workflows/sphinx.yml deleted file mode 100644 index 295ddc2..0000000 --- a/.github/workflows/sphinx.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: Deploy Sphinx documentation to Pages - -on: - push: - branches: [main] # branch to trigger deployment - -jobs: - pages: - runs-on: ubuntu-20.04 - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - permissions: - pages: write - id-token: write - steps: - - id: deployment - uses: sphinx-notes/pages@v3 diff --git a/.github/workflows/template-sync.yml b/.github/workflows/template-sync.yml deleted file mode 100644 index 6344f31..0000000 --- a/.github/workflows/template-sync.yml +++ /dev/null @@ -1,12 +0,0 @@ -name: Template Sync -on: - workflow_dispatch: -jobs: - sync: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3.5.2 # important! - - uses: euphoricsystems/action-sync-template-repository@v2.5.1 - with: - github-token: ${{ secrets.GITHUB_TOKEN }} - dry-run: true