Skip to content

Commit

Permalink
change default branch
Browse files Browse the repository at this point in the history
  • Loading branch information
hypsug0 committed Feb 6, 2024
1 parent 76dc2fc commit 27c5079
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: "📚 Documentation Builder"

on:
push:
branches: [ main ]
branches: [ master ]
paths:
- '.github/workflows/documentation.yml'
- 'docs/**/*'
Expand All @@ -11,7 +11,7 @@ on:
- "*"

pull_request:
branches: [ main ]
branches: [ master ]
paths:
- ".github/workflows/documentation.yml"

Expand Down Expand Up @@ -72,16 +72,16 @@ jobs:

- name: Setup Pages
uses: actions/configure-pages@v4
if: ${{ github.event_name == 'push' && ( startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/main' ) }}
if: ${{ github.event_name == 'push' && ( startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/master' ) }}

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
if: ${{ github.event_name == 'push' && ( startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/main' ) }}
if: ${{ github.event_name == 'push' && ( startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/master' ) }}
with:
# Upload entire repository
path: docs/_build/html/

- name: Deploy to GitHub Pages
id: deployment
if: ${{ github.event_name == 'push' && ( startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/main' ) }}
if: ${{ github.event_name == 'push' && ( startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/master' ) }}
uses: actions/deploy-pages@v1
4 changes: 2 additions & 2 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ name: "✅ Linter"

on:
push:
branches: [ main ]
branches: [ master ]
paths:
- '**.py'

pull_request:
branches: [ main ]
branches: [ master ]
paths:
- '**.py'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/packager.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ env:

on:
push:
branches: [ main ]
branches: [ master ]


jobs:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tester.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ name: "🎳 Tester"

on:
push:
branches: [ main ]
branches: [ master ]
paths:
- '**.py'

pull_request:
branches: [ main ]
branches: [ master ]
paths:
- '**.py'

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Scripts de processing framework de la LPO AuRA - QGIS Plugin
![tests](https://github.com/lpoaura/plugin_qgis_lpo/workflows/Tests/badge.svg)
[![codecov.io](https://codecov.io/github/lpoaura/plugin_qgis_lpo/coverage.svg?branch=main)](https://codecov.io/github/lpoaura/plugin_qgis_lpo?branch=main)
[![codecov.io](https://codecov.io/github/lpoaura/plugin_qgis_lpo/coverage.svg?branch=master)](https://codecov.io/github/lpoaura/plugin_qgis_lpo?branch=master)
![release](https://github.com/lpoaura/plugin_qgis_lpo/workflows/Release/badge.svg)

[![GPLv3 license](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0.html)
Expand Down Expand Up @@ -64,7 +64,7 @@ See [LICENSE](LICENSE) for more information.
| Minimum QGIS version | 3.16 |
| Maximum QGIS version | 3.99 |
| Git repository URL | https://github.com/lpoaura/PluginQGis-LPOData |
| Git default branch | main |
| Git default branch | master |
| License | GPLv3 |
| Python linter | both |
| CI/CD platform | GitHub |
Expand Down

0 comments on commit 27c5079

Please sign in to comment.