diff --git a/README.md b/README.md index 03dfe043..40d23e8a 100644 --- a/README.md +++ b/README.md @@ -114,6 +114,9 @@ Contributions are what make the open source community such an amazing place to b - Follow the [example-template](`https://github.com/ipfs-examples/example-template`) - This repository serves as template to create new examples to guarantee consistency between examples. It contains all the necessary files to create a new example +- Follow the [example-template-fork-&-go](`https://github.com/ipfs-examples/example-fork-go-template`) + - This repository serves as template to be used as a reference of how to implement the CI in order to sync the example with a standalone repo (correspondent to each example) + - Examples must: - Live inside the `/examples/` folder - Have tests and should make use of `test-util-ipfs-example` library diff --git a/examples/browser-add-readable-stream/.github/pull_request_template.md b/examples/browser-add-readable-stream/.github/pull_request_template.md new file mode 100644 index 00000000..e6a8f900 --- /dev/null +++ b/examples/browser-add-readable-stream/.github/pull_request_template.md @@ -0,0 +1,15 @@ +**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/examples/browser-add-readable-stream/.github/workflows/sync.yml b/examples/browser-add-readable-stream/.github/workflows/sync.yml new file mode 100644 index 00000000..969a758e --- /dev/null +++ b/examples/browser-add-readable-stream/.github/workflows/sync.yml @@ -0,0 +1,20 @@ +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-add-readable-stream" + source-branch: "master" + target-branch: "main" + git-username: github-actions + git-email: github-actions@github.com diff --git a/examples/browser-angular/.github/pull_request_template.md b/examples/browser-angular/.github/pull_request_template.md new file mode 100644 index 00000000..e6a8f900 --- /dev/null +++ b/examples/browser-angular/.github/pull_request_template.md @@ -0,0 +1,15 @@ +**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/examples/browser-angular/.github/workflows/sync.yml b/examples/browser-angular/.github/workflows/sync.yml new file mode 100644 index 00000000..65efe0d8 --- /dev/null +++ b/examples/browser-angular/.github/workflows/sync.yml @@ -0,0 +1,20 @@ +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-angular" + source-branch: "master" + target-branch: "main" + git-username: github-actions + git-email: github-actions@github.com diff --git a/examples/browser-browserify/.github/pull_request_template.md b/examples/browser-browserify/.github/pull_request_template.md new file mode 100644 index 00000000..e6a8f900 --- /dev/null +++ b/examples/browser-browserify/.github/pull_request_template.md @@ -0,0 +1,15 @@ +**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/examples/browser-browserify/.github/workflows/sync.yml b/examples/browser-browserify/.github/workflows/sync.yml new file mode 100644 index 00000000..3eb39a90 --- /dev/null +++ b/examples/browser-browserify/.github/workflows/sync.yml @@ -0,0 +1,20 @@ +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-browserify" + source-branch: "master" + target-branch: "main" + git-username: github-actions + git-email: github-actions@github.com diff --git a/examples/browser-create-react-app/.github/pull_request_template.md b/examples/browser-create-react-app/.github/pull_request_template.md new file mode 100644 index 00000000..e6a8f900 --- /dev/null +++ b/examples/browser-create-react-app/.github/pull_request_template.md @@ -0,0 +1,15 @@ +**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/examples/browser-create-react-app/.github/workflows/sync.yml b/examples/browser-create-react-app/.github/workflows/sync.yml new file mode 100644 index 00000000..d065c39b --- /dev/null +++ b/examples/browser-create-react-app/.github/workflows/sync.yml @@ -0,0 +1,20 @@ +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-create-react-app" + source-branch: "master" + target-branch: "main" + git-username: github-actions + git-email: github-actions@github.com diff --git a/examples/browser-exchange-files/.github/pull_request_template.md b/examples/browser-exchange-files/.github/pull_request_template.md new file mode 100644 index 00000000..e6a8f900 --- /dev/null +++ b/examples/browser-exchange-files/.github/pull_request_template.md @@ -0,0 +1,15 @@ +**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/examples/browser-exchange-files/.github/workflows/sync.yml b/examples/browser-exchange-files/.github/workflows/sync.yml new file mode 100644 index 00000000..71d61a93 --- /dev/null +++ b/examples/browser-exchange-files/.github/workflows/sync.yml @@ -0,0 +1,20 @@ +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-exchange-files" + source-branch: "master" + target-branch: "main" + git-username: github-actions + git-email: github-actions@github.com diff --git a/examples/browser-ipns-publish/.github/pull_request_template.md b/examples/browser-ipns-publish/.github/pull_request_template.md new file mode 100644 index 00000000..e6a8f900 --- /dev/null +++ b/examples/browser-ipns-publish/.github/pull_request_template.md @@ -0,0 +1,15 @@ +**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/examples/browser-ipns-publish/.github/workflows/sync.yml b/examples/browser-ipns-publish/.github/workflows/sync.yml new file mode 100644 index 00000000..23e93f4f --- /dev/null +++ b/examples/browser-ipns-publish/.github/workflows/sync.yml @@ -0,0 +1,20 @@ +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-ipns-publish" + source-branch: "master" + target-branch: "main" + git-username: github-actions + git-email: github-actions@github.com diff --git a/examples/browser-lit/.github/pull_request_template.md b/examples/browser-lit/.github/pull_request_template.md new file mode 100644 index 00000000..e6a8f900 --- /dev/null +++ b/examples/browser-lit/.github/pull_request_template.md @@ -0,0 +1,15 @@ +**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/examples/browser-lit/.github/workflows/sync.yml b/examples/browser-lit/.github/workflows/sync.yml new file mode 100644 index 00000000..919c1e7c --- /dev/null +++ b/examples/browser-lit/.github/workflows/sync.yml @@ -0,0 +1,20 @@ +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-lit" + source-branch: "master" + target-branch: "main" + git-username: github-actions + git-email: github-actions@github.com diff --git a/examples/browser-mfs/.github/pull_request_template.md b/examples/browser-mfs/.github/pull_request_template.md new file mode 100644 index 00000000..e6a8f900 --- /dev/null +++ b/examples/browser-mfs/.github/pull_request_template.md @@ -0,0 +1,15 @@ +**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/examples/browser-mfs/.github/workflows/sync.yml b/examples/browser-mfs/.github/workflows/sync.yml new file mode 100644 index 00000000..a5837837 --- /dev/null +++ b/examples/browser-mfs/.github/workflows/sync.yml @@ -0,0 +1,20 @@ +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-mfs" + source-branch: "master" + target-branch: "main" + git-username: github-actions + git-email: github-actions@github.com diff --git a/examples/browser-nextjs/.github/pull_request_template.md b/examples/browser-nextjs/.github/pull_request_template.md new file mode 100644 index 00000000..e6a8f900 --- /dev/null +++ b/examples/browser-nextjs/.github/pull_request_template.md @@ -0,0 +1,15 @@ +**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/examples/browser-nextjs/.github/workflows/sync.yml b/examples/browser-nextjs/.github/workflows/sync.yml new file mode 100644 index 00000000..8068e826 --- /dev/null +++ b/examples/browser-nextjs/.github/workflows/sync.yml @@ -0,0 +1,20 @@ +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-nextjs" + source-branch: "master" + target-branch: "main" + git-username: github-actions + git-email: github-actions@github.com diff --git a/examples/browser-parceljs/.github/pull_request_template.md b/examples/browser-parceljs/.github/pull_request_template.md new file mode 100644 index 00000000..e6a8f900 --- /dev/null +++ b/examples/browser-parceljs/.github/pull_request_template.md @@ -0,0 +1,15 @@ +**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/examples/browser-parceljs/.github/workflows/sync.yml b/examples/browser-parceljs/.github/workflows/sync.yml new file mode 100644 index 00000000..ae2a3782 --- /dev/null +++ b/examples/browser-parceljs/.github/workflows/sync.yml @@ -0,0 +1,20 @@ +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-parceljs" + source-branch: "master" + target-branch: "main" + git-username: github-actions + git-email: github-actions@github.com diff --git a/examples/browser-readablestream/.github/pull_request_template.md b/examples/browser-readablestream/.github/pull_request_template.md new file mode 100644 index 00000000..e6a8f900 --- /dev/null +++ b/examples/browser-readablestream/.github/pull_request_template.md @@ -0,0 +1,15 @@ +**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/examples/browser-readablestream/.github/workflows/sync.yml b/examples/browser-readablestream/.github/workflows/sync.yml new file mode 100644 index 00000000..591b2855 --- /dev/null +++ b/examples/browser-readablestream/.github/workflows/sync.yml @@ -0,0 +1,20 @@ +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-readablestream" + source-branch: "master" + target-branch: "main" + git-username: github-actions + git-email: github-actions@github.com diff --git a/examples/browser-script-tag/.github/pull_request_template.md b/examples/browser-script-tag/.github/pull_request_template.md new file mode 100644 index 00000000..e6a8f900 --- /dev/null +++ b/examples/browser-script-tag/.github/pull_request_template.md @@ -0,0 +1,15 @@ +**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/examples/browser-script-tag/.github/workflows/sync.yml b/examples/browser-script-tag/.github/workflows/sync.yml new file mode 100644 index 00000000..7af0dcc9 --- /dev/null +++ b/examples/browser-script-tag/.github/workflows/sync.yml @@ -0,0 +1,20 @@ +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-script-tag" + source-branch: "master" + target-branch: "main" + git-username: github-actions + git-email: github-actions@github.com diff --git a/examples/browser-service-worker/.github/pull_request_template.md b/examples/browser-service-worker/.github/pull_request_template.md new file mode 100644 index 00000000..e6a8f900 --- /dev/null +++ b/examples/browser-service-worker/.github/pull_request_template.md @@ -0,0 +1,15 @@ +**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/examples/browser-service-worker/.github/workflows/sync.yml b/examples/browser-service-worker/.github/workflows/sync.yml new file mode 100644 index 00000000..ae070939 --- /dev/null +++ b/examples/browser-service-worker/.github/workflows/sync.yml @@ -0,0 +1,20 @@ +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-service-worker" + source-branch: "master" + target-branch: "main" + git-username: github-actions + git-email: github-actions@github.com diff --git a/examples/browser-sharing-node-across-tabs/.github/pull_request_template.md b/examples/browser-sharing-node-across-tabs/.github/pull_request_template.md new file mode 100644 index 00000000..e6a8f900 --- /dev/null +++ b/examples/browser-sharing-node-across-tabs/.github/pull_request_template.md @@ -0,0 +1,15 @@ +**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/examples/browser-sharing-node-across-tabs/.github/workflows/sync.yml b/examples/browser-sharing-node-across-tabs/.github/workflows/sync.yml new file mode 100644 index 00000000..fa78b4e9 --- /dev/null +++ b/examples/browser-sharing-node-across-tabs/.github/workflows/sync.yml @@ -0,0 +1,20 @@ +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-sharing-node-across-tabs" + source-branch: "master" + target-branch: "main" + git-username: github-actions + git-email: github-actions@github.com diff --git a/examples/browser-video-streaming/.github/pull_request_template.md b/examples/browser-video-streaming/.github/pull_request_template.md new file mode 100644 index 00000000..e6a8f900 --- /dev/null +++ b/examples/browser-video-streaming/.github/pull_request_template.md @@ -0,0 +1,15 @@ +**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/examples/browser-video-streaming/.github/workflows/sync.yml b/examples/browser-video-streaming/.github/workflows/sync.yml new file mode 100644 index 00000000..13cbc6bf --- /dev/null +++ b/examples/browser-video-streaming/.github/workflows/sync.yml @@ -0,0 +1,20 @@ +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 diff --git a/examples/browser-vue/.github/pull_request_template.md b/examples/browser-vue/.github/pull_request_template.md new file mode 100644 index 00000000..e6a8f900 --- /dev/null +++ b/examples/browser-vue/.github/pull_request_template.md @@ -0,0 +1,15 @@ +**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/examples/browser-vue/.github/workflows/sync.yml b/examples/browser-vue/.github/workflows/sync.yml new file mode 100644 index 00000000..d31fce42 --- /dev/null +++ b/examples/browser-vue/.github/workflows/sync.yml @@ -0,0 +1,20 @@ +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-vue" + source-branch: "master" + target-branch: "main" + git-username: github-actions + git-email: github-actions@github.com diff --git a/examples/browser-webpack/.github/pull_request_template.md b/examples/browser-webpack/.github/pull_request_template.md new file mode 100644 index 00000000..e6a8f900 --- /dev/null +++ b/examples/browser-webpack/.github/pull_request_template.md @@ -0,0 +1,15 @@ +**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/examples/browser-webpack/.github/workflows/sync.yml b/examples/browser-webpack/.github/workflows/sync.yml new file mode 100644 index 00000000..cd96e86e --- /dev/null +++ b/examples/browser-webpack/.github/workflows/sync.yml @@ -0,0 +1,20 @@ +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-webpack" + source-branch: "master" + target-branch: "main" + git-username: github-actions + git-email: github-actions@github.com diff --git a/examples/circuit-relaying/.github/pull_request_template.md b/examples/circuit-relaying/.github/pull_request_template.md new file mode 100644 index 00000000..e6a8f900 --- /dev/null +++ b/examples/circuit-relaying/.github/pull_request_template.md @@ -0,0 +1,15 @@ +**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/examples/circuit-relaying/.github/workflows/sync.yml b/examples/circuit-relaying/.github/workflows/sync.yml new file mode 100644 index 00000000..14e42073 --- /dev/null +++ b/examples/circuit-relaying/.github/workflows/sync.yml @@ -0,0 +1,20 @@ +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/circuit-relaying" + source-branch: "master" + target-branch: "main" + git-username: github-actions + git-email: github-actions@github.com diff --git a/examples/custom-ipfs-repo/.github/pull_request_template.md b/examples/custom-ipfs-repo/.github/pull_request_template.md new file mode 100644 index 00000000..e6a8f900 --- /dev/null +++ b/examples/custom-ipfs-repo/.github/pull_request_template.md @@ -0,0 +1,15 @@ +**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/examples/custom-ipfs-repo/.github/workflows/sync.yml b/examples/custom-ipfs-repo/.github/workflows/sync.yml new file mode 100644 index 00000000..50c3e073 --- /dev/null +++ b/examples/custom-ipfs-repo/.github/workflows/sync.yml @@ -0,0 +1,20 @@ +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/custom-ipfs-repo" + source-branch: "master" + target-branch: "main" + git-username: github-actions + git-email: github-actions@github.com diff --git a/examples/custom-ipld-formats/.github/pull_request_template.md b/examples/custom-ipld-formats/.github/pull_request_template.md new file mode 100644 index 00000000..e6a8f900 --- /dev/null +++ b/examples/custom-ipld-formats/.github/pull_request_template.md @@ -0,0 +1,15 @@ +**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/examples/custom-ipld-formats/.github/workflows/sync.yml b/examples/custom-ipld-formats/.github/workflows/sync.yml new file mode 100644 index 00000000..372a5581 --- /dev/null +++ b/examples/custom-ipld-formats/.github/workflows/sync.yml @@ -0,0 +1,20 @@ +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/custom-ipld-formats" + source-branch: "master" + target-branch: "main" + git-username: github-actions + git-email: github-actions@github.com diff --git a/examples/custom-libp2p/.github/pull_request_template.md b/examples/custom-libp2p/.github/pull_request_template.md new file mode 100644 index 00000000..e6a8f900 --- /dev/null +++ b/examples/custom-libp2p/.github/pull_request_template.md @@ -0,0 +1,15 @@ +**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/examples/custom-libp2p/.github/workflows/sync.yml b/examples/custom-libp2p/.github/workflows/sync.yml new file mode 100644 index 00000000..96b3a296 --- /dev/null +++ b/examples/custom-libp2p/.github/workflows/sync.yml @@ -0,0 +1,20 @@ +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/custom-libp2p" + source-branch: "master" + target-branch: "main" + git-username: github-actions + git-email: github-actions@github.com diff --git a/examples/http-client-browser-pubsub/.github/pull_request_template.md b/examples/http-client-browser-pubsub/.github/pull_request_template.md new file mode 100644 index 00000000..e6a8f900 --- /dev/null +++ b/examples/http-client-browser-pubsub/.github/pull_request_template.md @@ -0,0 +1,15 @@ +**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/examples/http-client-browser-pubsub/.github/workflows/sync.yml b/examples/http-client-browser-pubsub/.github/workflows/sync.yml new file mode 100644 index 00000000..c8dca4ce --- /dev/null +++ b/examples/http-client-browser-pubsub/.github/workflows/sync.yml @@ -0,0 +1,20 @@ +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/http-client-browser-pubsub" + source-branch: "master" + target-branch: "main" + git-username: github-actions + git-email: github-actions@github.com diff --git a/examples/http-client-bundle-webpack/.github/pull_request_template.md b/examples/http-client-bundle-webpack/.github/pull_request_template.md new file mode 100644 index 00000000..e6a8f900 --- /dev/null +++ b/examples/http-client-bundle-webpack/.github/pull_request_template.md @@ -0,0 +1,15 @@ +**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/examples/http-client-bundle-webpack/.github/workflows/sync.yml b/examples/http-client-bundle-webpack/.github/workflows/sync.yml new file mode 100644 index 00000000..16edfb3f --- /dev/null +++ b/examples/http-client-bundle-webpack/.github/workflows/sync.yml @@ -0,0 +1,20 @@ +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/http-client-bundle-webpack" + source-branch: "master" + target-branch: "main" + git-username: github-actions + git-email: github-actions@github.com diff --git a/examples/http-client-name-api/.github/pull_request_template.md b/examples/http-client-name-api/.github/pull_request_template.md new file mode 100644 index 00000000..e6a8f900 --- /dev/null +++ b/examples/http-client-name-api/.github/pull_request_template.md @@ -0,0 +1,15 @@ +**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/examples/http-client-name-api/.github/workflows/sync.yml b/examples/http-client-name-api/.github/workflows/sync.yml new file mode 100644 index 00000000..8b60a21d --- /dev/null +++ b/examples/http-client-name-api/.github/workflows/sync.yml @@ -0,0 +1,20 @@ +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/http-client-name-api" + source-branch: "master" + target-branch: "main" + git-username: github-actions + git-email: github-actions@github.com diff --git a/examples/http-client-upload-file/.github/pull_request_template.md b/examples/http-client-upload-file/.github/pull_request_template.md new file mode 100644 index 00000000..e6a8f900 --- /dev/null +++ b/examples/http-client-upload-file/.github/pull_request_template.md @@ -0,0 +1,15 @@ +**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/examples/http-client-upload-file/.github/workflows/sync.yml b/examples/http-client-upload-file/.github/workflows/sync.yml new file mode 100644 index 00000000..51011c75 --- /dev/null +++ b/examples/http-client-upload-file/.github/workflows/sync.yml @@ -0,0 +1,20 @@ +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/http-client-upload-file" + source-branch: "master" + target-branch: "main" + git-username: github-actions + git-email: github-actions@github.com diff --git a/examples/ipfs-101/.github/pull_request_template.md b/examples/ipfs-101/.github/pull_request_template.md new file mode 100644 index 00000000..e6a8f900 --- /dev/null +++ b/examples/ipfs-101/.github/pull_request_template.md @@ -0,0 +1,15 @@ +**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/examples/ipfs-101/.github/workflows/sync.yml b/examples/ipfs-101/.github/workflows/sync.yml new file mode 100644 index 00000000..6480163b --- /dev/null +++ b/examples/ipfs-101/.github/workflows/sync.yml @@ -0,0 +1,20 @@ +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/ipfs-101" + source-branch: "master" + target-branch: "main" + git-username: github-actions + git-email: github-actions@github.com diff --git a/examples/ipfs-client-add-files/.github/pull_request_template.md b/examples/ipfs-client-add-files/.github/pull_request_template.md new file mode 100644 index 00000000..e6a8f900 --- /dev/null +++ b/examples/ipfs-client-add-files/.github/pull_request_template.md @@ -0,0 +1,15 @@ +**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/examples/ipfs-client-add-files/.github/workflows/sync.yml b/examples/ipfs-client-add-files/.github/workflows/sync.yml new file mode 100644 index 00000000..7086d6e7 --- /dev/null +++ b/examples/ipfs-client-add-files/.github/workflows/sync.yml @@ -0,0 +1,20 @@ +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/ipfs-client-add-files" + source-branch: "master" + target-branch: "main" + git-username: github-actions + git-email: github-actions@github.com diff --git a/examples/run-in-electron/.github/pull_request_template.md b/examples/run-in-electron/.github/pull_request_template.md new file mode 100644 index 00000000..e6a8f900 --- /dev/null +++ b/examples/run-in-electron/.github/pull_request_template.md @@ -0,0 +1,15 @@ +**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/examples/run-in-electron/.github/workflows/sync.yml b/examples/run-in-electron/.github/workflows/sync.yml new file mode 100644 index 00000000..ae4a03d8 --- /dev/null +++ b/examples/run-in-electron/.github/workflows/sync.yml @@ -0,0 +1,20 @@ +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/run-in-electron" + source-branch: "master" + target-branch: "main" + git-username: github-actions + git-email: github-actions@github.com diff --git a/examples/running-multiple-nodes/.github/pull_request_template.md b/examples/running-multiple-nodes/.github/pull_request_template.md new file mode 100644 index 00000000..e6a8f900 --- /dev/null +++ b/examples/running-multiple-nodes/.github/pull_request_template.md @@ -0,0 +1,15 @@ +**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/examples/running-multiple-nodes/.github/workflows/sync.yml b/examples/running-multiple-nodes/.github/workflows/sync.yml new file mode 100644 index 00000000..12ca00b9 --- /dev/null +++ b/examples/running-multiple-nodes/.github/workflows/sync.yml @@ -0,0 +1,20 @@ +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/running-multiple-nodes" + source-branch: "master" + target-branch: "main" + git-username: github-actions + git-email: github-actions@github.com diff --git a/examples/traverse-ipld-graphs/.github/pull_request_template.md b/examples/traverse-ipld-graphs/.github/pull_request_template.md new file mode 100644 index 00000000..e6a8f900 --- /dev/null +++ b/examples/traverse-ipld-graphs/.github/pull_request_template.md @@ -0,0 +1,15 @@ +**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/examples/traverse-ipld-graphs/.github/workflows/sync.yml b/examples/traverse-ipld-graphs/.github/workflows/sync.yml new file mode 100644 index 00000000..71db8eb8 --- /dev/null +++ b/examples/traverse-ipld-graphs/.github/workflows/sync.yml @@ -0,0 +1,20 @@ +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/traverse-ipld-graphs" + source-branch: "master" + target-branch: "main" + git-username: github-actions + git-email: github-actions@github.com diff --git a/examples/types-use-ipfs-from-ts/.github/pull_request_template.md b/examples/types-use-ipfs-from-ts/.github/pull_request_template.md new file mode 100644 index 00000000..e6a8f900 --- /dev/null +++ b/examples/types-use-ipfs-from-ts/.github/pull_request_template.md @@ -0,0 +1,15 @@ +**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/examples/types-use-ipfs-from-ts/.github/workflows/sync.yml b/examples/types-use-ipfs-from-ts/.github/workflows/sync.yml new file mode 100644 index 00000000..7e1ef693 --- /dev/null +++ b/examples/types-use-ipfs-from-ts/.github/workflows/sync.yml @@ -0,0 +1,20 @@ +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/types-use-ipfs-from-ts" + source-branch: "master" + target-branch: "main" + git-username: github-actions + git-email: github-actions@github.com diff --git a/examples/types-use-ipfs-from-typed-js/.github/pull_request_template.md b/examples/types-use-ipfs-from-typed-js/.github/pull_request_template.md new file mode 100644 index 00000000..e6a8f900 --- /dev/null +++ b/examples/types-use-ipfs-from-typed-js/.github/pull_request_template.md @@ -0,0 +1,15 @@ +**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/examples/types-use-ipfs-from-typed-js/.github/workflows/sync.yml b/examples/types-use-ipfs-from-typed-js/.github/workflows/sync.yml new file mode 100644 index 00000000..86146c5b --- /dev/null +++ b/examples/types-use-ipfs-from-typed-js/.github/workflows/sync.yml @@ -0,0 +1,20 @@ +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/types-use-ipfs-from-typed-js" + source-branch: "master" + target-branch: "main" + git-username: github-actions + git-email: github-actions@github.com