diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..ecb099f --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,12 @@ +# These are supported funding model platforms + +github: Josh5 +patreon: Josh5 +open_collective: # Replace with a single Open Collective username +ko_fi: josh5coffee +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/auto-build-and-publish.yml b/.github/workflows/auto-build-and-publish.yml new file mode 100644 index 0000000..5c177dd --- /dev/null +++ b/.github/workflows/auto-build-and-publish.yml @@ -0,0 +1,37 @@ +name: Automatically build and publish this plugin + +on: + push: + branches: + - 'master' + +jobs: + + build-and-publish-plugin: + runs-on: ubuntu-latest + name: Build and publish plugin + steps: + + # Execute plugin repo gen action + - name: Build and publish plugin + uses: Unmanic/action.build-and-publish-unmanic-plugin@master + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + + generate-pr-in-official-repo: + runs-on: ubuntu-latest + name: Generate PR for official repo + permissions: + contents: write + actions: write + pull-requests: write + steps: + + # Execute PR generation action + - name: Generate PR for official repo + uses: Unmanic/action.open-pr-to-unmanic-repo@master + with: + dst_repo: Unmanic/unmanic-plugins + pr_repo: Unmanic/unmanic-plugins + pr_repo_branch_name: official + github_token: ${{ secrets.GH_TOKEN }}