diff --git a/.github/stale.yml b/.github/stale.yml deleted file mode 100644 index 4b47a66c..00000000 --- a/.github/stale.yml +++ /dev/null @@ -1,17 +0,0 @@ -# Number of days of inactivity before an issue becomes stale -daysUntilStale: 30 -# Number of days of inactivity before a stale issue is closed -daysUntilClose: 7 -# Issues with these labels will never be considered stale -exemptLabels: - - pinned - - security -# Label to use when marking an issue as stale -staleLabel: stale -# Comment to post when marking an issue as stale. Set to `false` to disable -markComment: > - This issue has been automatically marked for closure because it has not had - recent activity. It will be closed if no further activity occurs. Thank you - for your contributions. -# Comment to post when closing a stale issue. Set to `false` to disable -closeComment: false diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0f4f2a09..d8b491b6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,9 +15,9 @@ jobs: steps: - name: checkout repo uses: actions/checkout@v3 - - uses: actions/setup-dotnet@v3 - with: - dotnet-version: '8.0.x' +# - uses: actions/setup-dotnet@v3 +# with: +# dotnet-version: '8.0.x' - name: build run: dotnet build - name: test Finbuckle.MultiTenant diff --git a/.github/workflows/copy-docs.yml b/.github/workflows/copy-docs.yml deleted file mode 100644 index 5bb8ebe7..00000000 --- a/.github/workflows/copy-docs.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: Copy docs to website - -on: [workflow_dispatch] - -jobs: - checkout-copy-checkin: - runs-on: ubuntu-latest - steps: - - name: Checkout Finbuckle.MultiTenant - uses: actions/checkout@v4 - with: - path: main - fetch-depth: 0 # Required due to the way Git works, without it this action won't be able to find any or the correct tags - - name: Get Current Version - id: currentversion - uses: WyriHaximus/github-action-get-previous-tag@v1 - with: - workingDirectory: main - prefix: v - - name: Checkout Website - uses: actions/checkout@v4 - with: - repository: Finbuckle/Website - token: ${{ secrets.workflow_pat }} - path: website - - name: Copy Docs - run: mkdir -p website/docs/${{ steps.currentversion.outputs.tag }} && cp main/docs/* website/docs/${{ steps.currentversion.outputs.tag }} - - name: Checkin Website - working-directory: website - run: | - git config user.name github-actions - git config user.email github-actions@github.com - git add . - git commit -m "chore: docs generated" - git push