Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .copier-answers.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# WARNING: Do not edit this file manually.
# Any changes will be overwritten by Copier.
_commit: v0.7.0
_commit: v0.7.0-2-g0389b21
_src_path: gh:easyscience/templates
lib_docs_url: https://easyscience.github.io/utils
lib_doi: 10.5281/zenodo.18163581
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/dashboard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
workflow_dispatch:
workflow_call:

permissions:
contents: read

# Set the environment variables to be used in all jobs defined in this workflow
env:
CI_BRANCH: ${{ github.head_ref || github.ref_name }}
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/issues-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ on:
issues:
types: [opened, labeled, unlabeled]

permissions:
issues: write

jobs:
check-labels:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/pypi-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

permissions:
contents: read

# Set the environment variables to be used in all jobs defined in this workflow
env:
CI_BRANCH: ${{ github.head_ref || github.ref_name }}
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

permissions:
contents: read

# Set the environment variables to be used in all jobs defined in this workflow
env:
CI_BRANCH: ${{ github.head_ref || github.ref_name }}
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test-trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

permissions:
contents: read

jobs:
code-tests-trigger:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/tutorial-tests-trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

permissions:
contents: read

jobs:
tutorial-tests-trigger:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/tutorial-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

permissions:
contents: read

# Allow only one concurrent workflow, skipping runs queued between the run
# in-progress and latest queued. And cancel in-progress runs.
concurrency:
Expand Down
19 changes: 19 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,25 @@ Please make sure you follow the EasyScience organization-wide

---

## Table of Contents

- [How to Interact With This Project](#how-to-interact-with-this-project)
- [1. Understanding the Development Model](#1-understanding-the-development-model)
- [2. Getting the Code](#2-getting-the-code)
- [3. Setting Up the Development Environment](#3-setting-up-the-development-environment)
- [4. Creating a Branch](#4-creating-a-branch)
- [5. Implementing Your Changes](#5-implementing-your-changes)
- [6. Code Quality Checks](#6-code-quality-checks)
- [7. Opening a Pull Request](#7-opening-a-pull-request)
- [8. Continuous Integration (CI)](#8-continuous-integration-ci)
- [9. Code Review](#9-code-review)
- [10. Documentation Contributions](#10-documentation-contributions)
- [11. Reporting Issues](#11-reporting-issues)
- [12. Security Issues](#12-security-issues)
- [13. Releases](#13-releases)

---

## How to Interact With This Project

If you are not planning to modify the code, you may want to:
Expand Down
Loading