From 9d1d9adf76e2fbf3aa6e81cb8bf9bc626ecb5a0f Mon Sep 17 00:00:00 2001 From: Joshua Seigler Date: Wed, 24 Nov 2021 20:05:21 -0500 Subject: [PATCH] chore: remove unnecessary gh workflow --- .github/pull_request_template.md | 15 --------------- .github/workflows/sync.yml | 20 -------------------- 2 files changed, 35 deletions(-) delete mode 100644 .github/pull_request_template.md delete mode 100644 .github/workflows/sync.yml diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md deleted file mode 100644 index e6a8f90..0000000 --- a/.github/pull_request_template.md +++ /dev/null @@ -1,15 +0,0 @@ -**IMPORTANT: Please do not create a Pull Request for this repository.** - -The contents of this repository are automatically synced from the parent [IPFS Examples Project](https://github.com/ipfs-examples/js-ipfs-examples) so any changes made to the standalone repository will be lost after the next sync. - -Please open a PR against [IPFS Examples](https://github.com/ipfs-examples/js-ipfs-examples) instead. - -## Contributing - -Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are **greatly appreciated**. - -1. Fork the [IPFS Examples Project](https://github.com/ipfs-examples/js-ipfs-examples) -2. Create your Feature Branch (`git checkout -b feature/amazing-example`) -3. Commit your Changes (`git commit -a -m 'feat: add some amazing example'`) -4. Push to the Branch (`git push origin feature/amazing-example`) -5. Open a Pull Request diff --git a/.github/workflows/sync.yml b/.github/workflows/sync.yml deleted file mode 100644 index 13cbc6b..0000000 --- a/.github/workflows/sync.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: Sync -on: - workflow_dispatch: - schedule: - - cron: "0 0 * * *" - -jobs: - sync: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Pull from another repository - uses: ipfs-examples/actions-pull-directory-from-repo@main - with: - source-repo: "ipfs-examples/js-ipfs-examples" - source-folder-path: "examples/browser-video-streaming" - source-branch: "master" - target-branch: "main" - git-username: github-actions - git-email: github-actions@github.com