From af0ded7e0c64a9befc59365e2db5bad25a807efd Mon Sep 17 00:00:00 2001 From: Sebastian Leheis Date: Wed, 19 Mar 2025 00:58:41 +0100 Subject: [PATCH] removed github workflows --- .github/FUNDING.yml | 12 ------------ .github/workflows/pr.yml | 7 ------- .github/workflows/push-to-latest.yml | 26 -------------------------- .github/workflows/push-to-master.yml | 26 -------------------------- 4 files changed, 71 deletions(-) delete mode 100644 .github/FUNDING.yml delete mode 100644 .github/workflows/pr.yml delete mode 100644 .github/workflows/push-to-latest.yml delete mode 100644 .github/workflows/push-to-master.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index b65e863..0000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1,12 +0,0 @@ -# These are supported funding model platforms - -github: [sandersaares] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] -patreon: # Replace with a single Patreon username -open_collective: # Replace with a single Open Collective username -ko_fi: # Replace with a single Ko-fi username -tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel -community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry -liberapay: # Replace with a single Liberapay username -issuehunt: # Replace with a single IssueHunt username -otechie: # Replace with a single Otechie username -custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml deleted file mode 100644 index da390e1..0000000 --- a/.github/workflows/pr.yml +++ /dev/null @@ -1,7 +0,0 @@ -on: [pull_request] -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@master - - run: docker build . \ No newline at end of file diff --git a/.github/workflows/push-to-latest.yml b/.github/workflows/push-to-latest.yml deleted file mode 100644 index 333600d..0000000 --- a/.github/workflows/push-to-latest.yml +++ /dev/null @@ -1,26 +0,0 @@ -on: - push: - branches: ['latest'] -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@master - - id: make_version_string - uses: sandersaares-actions/make-version-string@master - with: - assemblyInfoPath: AssemblyInfo.cs - primaryBranch: 'latest' - - uses: sandersaares-actions/expand-tokens@master - env: - VERSIONSTRING: ${{ steps.make_version_string.outputs.versionstring }} - with: - path: Constants.cs - - name: Publish to Registry - uses: elgohr/Publish-Docker-Github-Action@master - with: - name: prometheusnet/docker_exporter:latest - username: prometheusnet - password: ${{ secrets.docker_hub_token }} - snapshot: true - buildoptions: '--label version=${{ steps.make_version_string.outputs.versionstring }}' \ No newline at end of file diff --git a/.github/workflows/push-to-master.yml b/.github/workflows/push-to-master.yml deleted file mode 100644 index d884a75..0000000 --- a/.github/workflows/push-to-master.yml +++ /dev/null @@ -1,26 +0,0 @@ -on: - push: - branches: ['master'] -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@master - - id: make_version_string - uses: sandersaares-actions/make-version-string@master - with: - assemblyInfoPath: AssemblyInfo.cs - primaryBranch: 'latest' - - uses: sandersaares-actions/expand-tokens@master - env: - VERSIONSTRING: ${{ steps.make_version_string.outputs.versionstring }} - with: - path: Constants.cs - - name: Publish to Registry - uses: elgohr/Publish-Docker-Github-Action@master - with: - name: prometheusnet/docker_exporter:cb - username: prometheusnet - password: ${{ secrets.docker_hub_token }} - snapshot: true - buildoptions: '--label version=${{ steps.make_version_string.outputs.versionstring }}' \ No newline at end of file