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
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ on:
- release/**

permissions:
contents: read
checks: write
contents: read
checks: write
actions: write

jobs:
build_linux:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/ci_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ on:
- "v[0-9]+.[0-9]+.[0-9]+"
- "v[0-9]+.[0-9]+.[0-9]+-beta.*"

permissions:
contents: read
actions: write

env:
ARCHIVE_PREFIX: com.espressif.idf.update-
ARCHIVE_SUFFIX: -SNAPSHOT.zip
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/ci_uploads.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ on:
paths:
- 'internal/com.espressif.idf.uploads/**'

permissions:
contents: read

jobs:
upload-file:
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ on:
- release/**

permissions:
contents: read
checks: write
contents: read
checks: write

jobs:
build_windows:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/docs_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ on:
- 'docs/**'
- '.github/workflows/docs_build.yml'

permissions:
contents: read
actions: write

jobs:

build-docs:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/docs_production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ on:
paths:
- 'docs/**'
- '.github/workflows/docs_production.yml'


permissions:
contents: read

jobs:

deploy-prod-docs:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/issue_comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ name: Sync issue comments to JIRA
# This workflow will be triggered when new issue comment is created (including PR comments)
on: issue_comment

permissions:
contents: read
issues: write

jobs:
sync_issue_comments_to_jira:
name: Sync Issue Comments to Jira
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/new_issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ on:
types: [opened, edited]

permissions:
issues: write
contents: read
issues: write
actions: write

jobs:
sync_issues_to_jira:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/new_prs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ on:
schedule:
- cron: "0 * * * *"

permissions:
contents: read
issues: write

jobs:
sync_prs_to_jira:
name: Sync PRs to Jira
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ on:
schedule:
- cron: "0 0 * * *"

permissions:
contents: read
actions: write

jobs:
build:
runs-on: macos-latest
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/pr-comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ on:
workflow_run:
workflows: [CI]
types: [completed]

permissions:
actions: read
issues: write

jobs:
pr_comment:
if: github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success'
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
name: Conventional Commits Check

on:
pull_request:
branches: [ master ]
pull_request:
branches: [master]

permissions:
contents: read

jobs:
precommit:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/update-site-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ on:
- cron: '0 0 * * *'
workflow_dispatch:

permissions:
contents: read

jobs:
update-site-tests:
runs-on: [self-hosted, eclipse, BrnoUBU0004]
Expand Down
Loading