diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 359869f..ad788b5 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -19,8 +19,8 @@ Describe your issue here. - [ ] discussion ### Requirements (place an `x` in each of the `[ ]`) -* [ ] I've read and understood the [Contributing guidelines](https://github.com/Juanpe/SkeletonView/blob/develop/CONTRIBUTING.md) and have done my best effort to follow them. -* [ ] I've read and agree to the [Code of Conduct](https://github.com/Juanpe/SkeletonView/blob/develop/CODE_OF_CONDUCT.md). +* [ ] I've read and understood the [Contributing guidelines](https://github.com/Juanpe/SkeletonView/blob/main/CONTRIBUTING.md) and have done my best effort to follow them. +* [ ] I've read and agree to the [Code of Conduct](https://github.com/Juanpe/SkeletonView/blob/main/CODE_OF_CONDUCT.md). * [ ] I've searched for any related issues and avoided creating a duplicate issue. --- diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index cea02e2..f92bdbf 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -3,5 +3,5 @@ Describe the goal of this PR. Mention any related Issue numbers. ### Requirements (place an `x` in each of the `[ ]`) -* [ ] I've read and understood the [Contributing guidelines](https://github.com/Juanpe/SkeletonView/blob/develop/CONTRIBUTING.md) and have done my best effort to follow them. -* [ ] I've read and agree to the [Code of Conduct](https://github.com/Juanpe/SkeletonView/blob/develop/CODE_OF_CONDUCT.md). +* [ ] I've read and understood the [Contributing guidelines](https://github.com/Juanpe/SkeletonView/blob/main/CONTRIBUTING.md) and have done my best effort to follow them. +* [ ] I've read and agree to the [Code of Conduct](https://github.com/Juanpe/SkeletonView/blob/main/CODE_OF_CONDUCT.md). diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8096d93..ad1e469 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -2,7 +2,7 @@ name: CI on: pull_request: - branches: [develop] + branches: [main] jobs: build: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a7d04fc..672ebe7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,7 +25,7 @@ jobs: - name: commit changes uses: stefanzweifel/git-auto-commit-action@v4 with: - branch: 'develop' + branch: 'main' commit_message: 'Bump version ${{ github.event.inputs.release_version }}' env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/release_notes.yml b/.github/workflows/release_notes.yml index 597d36b..394d5d4 100644 --- a/.github/workflows/release_notes.yml +++ b/.github/workflows/release_notes.yml @@ -3,7 +3,7 @@ name: Release Notes on: push: branches: - - develop + - main jobs: update_release_notes: diff --git a/.github/workflows/validations.yml b/.github/workflows/validations.yml index 4339fe7..624fd91 100644 --- a/.github/workflows/validations.yml +++ b/.github/workflows/validations.yml @@ -2,7 +2,7 @@ name: Validations on: pull_request_target: - branches: [develop] + branches: [main] types: [opened, reoneped, edited, synchronized] # workflow_dispatch: diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 8e8d81d..83d4cbf 100755 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,7 +1,7 @@ # Contributors Guide Interested in contributing? Awesome! Before you do though, please read our -[Code of Conduct](https://github.com/Juanpe/SkeletonView/blob/develop/CODE_OF_CONDUCT.md). We take it very seriously, and expect that you will as +[Code of Conduct](https://github.com/Juanpe/SkeletonView/blob/main/CODE_OF_CONDUCT.md). We take it very seriously, and expect that you will as well. There are many ways you can contribute! :heart: @@ -45,7 +45,7 @@ If the contribution doesn't meet the above criteria, you may fail our automated 3. :herb: Create a new branch and check it out. 4. :crystal_ball: Make your changes and commit them locally. 5. :arrow_heading_up: Push your new branch to your fork. (e.g. `git push username fix-issue-300`). -6. :inbox_tray: Open a Pull Request on github.com from your new branch on your fork to `develop` in this +6. :inbox_tray: Open a Pull Request on github.com from your new branch on your fork to `main` in this repository. ## Developer's Certificate of Origin 1.1 diff --git a/README.md b/README.md index 2e36800..3c0525e 100755 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ • Contributing

-**🌎 README is available in other languages: [🇪🇸](https://github.com/Juanpe/SkeletonView/blob/develop/README_es.md) . [🇨🇳](https://github.com/Juanpe/SkeletonView/blob/master/README_zh.md) . [🇧🇷](https://github.com/Juanpe/SkeletonView/blob/master/README_pt-br.md) . [🇰🇷](https://github.com/Juanpe/SkeletonView/blob/master/README_ko.md) . [🇫🇷](https://github.com/Juanpe/SkeletonView/blob/master/README_fr.md)** +**🌎 README is available in other languages: [🇪🇸](https://github.com/Juanpe/SkeletonView/blob/main/README_es.md) . [🇨🇳](https://github.com/Juanpe/SkeletonView/blob/master/README_zh.md) . [🇧🇷](https://github.com/Juanpe/SkeletonView/blob/master/README_pt-br.md) . [🇰🇷](https://github.com/Juanpe/SkeletonView/blob/master/README_ko.md) . [🇫🇷](https://github.com/Juanpe/SkeletonView/blob/master/README_fr.md)** Today almost all apps have async processes, such as API requests, long running processes, etc. While the processes are working, usually developers place a loading view to show users that something is going on. @@ -531,7 +531,7 @@ This is an open source project, so feel free to contribute. How? See [all contributors](https://github.com/Juanpe/SkeletonView/graphs/contributors) -For more information, please read the [contributing guidelines](https://github.com/Juanpe/SkeletonView/blob/develop/CONTRIBUTING.md). +For more information, please read the [contributing guidelines](https://github.com/Juanpe/SkeletonView/blob/main/CONTRIBUTING.md). ## 📢 Mentions diff --git a/README_es.md b/README_es.md index 6d0b976..246639d 100644 --- a/README_es.md +++ b/README_es.md @@ -27,6 +27,7 @@ Hoy en día, La mayoría de las apps tiene procesos asíncronos, como peticiones Enjoy it! 🙂 ## +- [](#) - [🌟 Destacado](#-destacado) - [🎬 Videotutoriales](#-videotutoriales) - [📲 Instalación](#-instalación) @@ -476,7 +477,7 @@ Esto es un proyecto open source, siéntete libre de contribuir. ¿Cómo? Échale un vistazo a [los que ya han contribuído](https://github.com/Juanpe/SkeletonView/graphs/contributors) -Para más información, por favor, lee la [guía de contribución](https://github.com/Juanpe/SkeletonView/blob/develop/CONTRIBUTING.md). +Para más información, por favor, lee la [guía de contribución](https://github.com/Juanpe/SkeletonView/blob/main/CONTRIBUTING.md). ## 📢 Menciones