Skip to content

Commit 13277b1

Browse files
committed
Merge remote-tracking branch 'remotes/origin/esp32' into cmsis_dap_v2
2 parents 45a8054 + 97ba3a6 commit 13277b1

File tree

167 files changed

+27192
-184
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

167 files changed

+27192
-184
lines changed

.gitattributes

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
* text eol=lf
2+
3+
*.png binary
4+
*.bin binary
5+
*.elf binary

.github/main.workflow

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
workflow "Sync issues to JIRA" {
2+
on = "issues"
3+
resolves = ["Sync to JIRA"]
4+
}
5+
6+
workflow "Sync issue and PR comments to JIRA" {
7+
on = "issue_comment"
8+
resolves = ["Sync to JIRA"]
9+
}
10+
11+
workflow "Sync PRs to JIRA" {
12+
resolves = ["Sync to JIRA"]
13+
on = "pull_request"
14+
}
15+
16+
action "Sync to JIRA" {
17+
uses = "espressif/github-actions/sync_issues_to_jira@master"
18+
secrets = [
19+
"GITHUB_TOKEN",
20+
"JIRA_USER",
21+
"JIRA_PASS",
22+
"JIRA_URL",
23+
]
24+
env = {
25+
JIRA_PROJECT = "OCD"
26+
}
27+
}

0 commit comments

Comments
 (0)