llvm-capstone/.github/workflows
Mohammed Keyvanzadeh 859e6aa100
[github] GitHub Actions workflows changes (#65856)
- Remove usages of the non-existent `ignore-forks` field, conditions in
jobs already exist to prevent the jobs from running in forks.
- Don't use variables in the `printf` format string. Use `printf
"..%s.." "$foo"`. ([SC2059](https://www.shellcheck.net/wiki/SC2059))
- Double quote variable expansion to prevent globbing and word
splitting. ([SC2086](https://www.shellcheck.net/wiki/SC2086))
- Prefer `[ p ] || [ q ]` as `[ p -o q ]` is not well defined.
([SC2166](https://www.shellcheck.net/wiki/SC2166))
- Consider `{ cmd1; cmd2; } >> file` instead of individual redirects.
([SC2129](https://www.shellcheck.net/wiki/SC2129))
- Use `$(...)` notation instead of legacy notation `...`.
([SC2006](https://www.shellcheck.net/wiki/SC2006))
- Use `./*glob*` or `-- *glob*` so names with dashes won't become
options. ([SC2035](https://www.shellcheck.net/wiki/SC2035))
- Refactor JavaScript code in certain workflows.
- Change workflow variable substitution style of some workflows to be
consistent with others.
2023-09-13 01:51:47 +03:30
..
clang-tests.yml [github] GitHub Actions workflows changes (#65856) 2023-09-13 01:51:47 +03:30
issue-release-workflow.yml [github] GitHub Actions workflows changes (#65856) 2023-09-13 01:51:47 +03:30
issue-subscriber.yml [github] GitHub Actions workflows changes (#65856) 2023-09-13 01:51:47 +03:30
libclang-abi-tests.yml [github] GitHub Actions workflows changes (#65856) 2023-09-13 01:51:47 +03:30
libclc-tests.yml [github] GitHub Actions workflows changes (#65856) 2023-09-13 01:51:47 +03:30
lld-tests.yml [github] GitHub Actions workflows changes (#65856) 2023-09-13 01:51:47 +03:30
lldb-tests.yml [github] GitHub Actions workflows changes (#65856) 2023-09-13 01:51:47 +03:30
llvm-bugs.yml workflows: Don't try and run llvm-bugs in forks 2023-03-16 16:47:07 +00:00
llvm-project-tests.yml [github] GitHub Actions workflows changes (#65856) 2023-09-13 01:51:47 +03:30
llvm-tests.yml [github] GitHub Actions workflows changes (#65856) 2023-09-13 01:51:47 +03:30
new-issues.yml [Github] Move the issue labeler data out of workflows 2023-09-05 15:10:42 +02:00
new-prs.yml [github] GitHub Actions workflows changes (#65856) 2023-09-13 01:51:47 +03:30
pr-python-format.yml Add GitHub workflow for check Python file formatting (#65482) 2023-09-08 18:22:20 +02:00
pr-receive-label.yml workflows: Reconfigure pr-subscriber action so that it can access secrets 2023-09-08 11:55:59 -07:00
pr-receive.yml workflows: Split new-prs into two workflows 2023-09-08 22:09:33 -07:00
pr-subscriber.yml [github] GitHub Actions workflows changes (#65856) 2023-09-13 01:51:47 +03:30
README.md Removing the main to master sync GitHub workflow. 2021-01-28 12:18:25 -08:00
release-binaries.yml [github] GitHub Actions workflows changes (#65856) 2023-09-13 01:51:47 +03:30
release-tasks.yml [github] GitHub Actions workflows changes (#65856) 2023-09-13 01:51:47 +03:30
set-release-binary-outputs.sh github: Add manual workflow to build and upload release binaries 2023-04-17 12:03:56 -07:00
sync-release-repo.yml [GitHub] use checkout action v4 (#65819) 2023-09-12 12:08:56 +02:00
version-check.py [NFC][Py Reformat] Reformat version-check.py in .github dir 2023-05-26 08:11:06 +02:00
version-check.yml [github] GitHub Actions workflows changes (#65856) 2023-09-13 01:51:47 +03:30

Github action workflows should be stored in this directrory.