summaryrefslogtreecommitdiff
path: root/.github/workflows
AgeCommit message (Collapse)Author
2023-10-28ci: fix path filtering in installer workflowMarc Cornellà
See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-including-and-excluding-paths
2023-10-28ci(vercel): add Content-Disposition header on installerMarc Cornellà
This allows doing something like curl -O https://install.ohmyz.sh and have the `install.sh` file automatically saved to its right name.
2023-10-11ci: remove redundant macos runner for CI testsMarc Cornellà
Currently the macOS runner is not needed, as we are only checking zsh syntax. We can reactivate it in the future if needed.
2023-09-17ci(installer): remove `vc link` which generates the wrong projectMarc Cornellà
`vc link` is not needed, as we already have `VERCEL_PROJECT_ID` defined as an env variable. Currently the `vc link` only creates a second empty project with the name `installer` as seen in logs: Linked to ohmyzsh/installer (created .vercel and added it to .gitignore) Vercel CLI 32.2.4
2023-06-02feat(install): deploy installer to install.ohmyz.sh (#11722)Carlo Sala
Co-authored-by: Marc Cornellà <hello@mcornella.com>
2023-01-13ci: update to `checkout@v3` to avoid warningsCarlo Sala
2022-11-04ci: fix update of plugin or theme fieldsMarc Cornellà
See [1] for the reference of value field (ProjectV2FieldValue type), and [2] for sample application code. [1] https://docs.github.com/en/graphql/reference/input-objects#projectv2fieldvalue [2] https://docs.github.com/en/enterprise-cloud@latest/issues/planning-and-tracking-with-projects/automating-your-project/automating-projects-using-actions#example-workflow-authenticating-with-a-github-app
2022-11-03ci: migrate to ProjectV2 GraphQL API (#11311)Lennart Ochel
2022-10-07ci: harden permissions for GitHub Workflows (#11174)Alex
* build: harden main.yml permissions Signed-off-by: Alex <aleksandrosansan@gmail.com> * build: harden project.yml permissions Signed-off-by: Alex <aleksandrosansan@gmail.com> * Update project.yml The permissions are not necessary, because a separate token is used `GITHUB_TOKEN: ${{ secrets.PROJECT_TOKEN }}`
2022-04-04ci(project): sort issues and PRs when reopenedMarc Cornellà
2022-02-21ci: cancel current runs on new triggerMarc Cornellà
2022-01-11ci(project): fix .list files not found errorMarc Cornellà
2022-01-10ci(project): fix `gh pr view` call to use ohmyzsh repositoryMarc Cornellà
2022-01-03ci: disable GitHub Actions on forksMarc Cornellà
2022-01-03chore: simplify project GitHub ActionMarc Cornellà
2022-01-03chore: simplify `GITHUB_TOKEN` env in project GitHub ActionMarc Cornellà
2022-01-02chore: I'm dumb afMarc Cornellà
2022-01-02chore: let's try againMarc Cornellà
2022-01-02chore: look ma no auth!Marc Cornellà
2022-01-02chore: please workMarc Cornellà
2022-01-02chore: fix auth in Project tracking ActionMarc Cornellà
2022-01-02chore: use GITHUB_TOKEN auth for Project Beta GitHub ActionMarc Cornellà
2022-01-02chore: add Projects Beta GitHub ActionMarc Cornellà
2021-12-07ci(spelling): turn off check-spelling action temporarilyMarc Cornellà
2021-12-07ci(spelling): automatically accept aliased commands (#10475)Josh Soref
Co-authored-by: Josh Soref <jsoref@users.noreply.github.com>
2021-12-02ci: add `check-spelling` action (#10470)Josh Soref
Co-authored-by: Josh Soref <jsoref@users.noreply.github.com>
2021-12-01Revert "ci: add `check-spelling` GitHub Action"Marc Cornellà
This reverts commit aef393bdce523ed5e5754721965fab2da8080119.
2021-12-01ci: add `check-spelling` GitHub ActionMarc Cornellà
2020-02-04Rename GitHub Action to CIMarc Cornellà
2020-01-29Create Github Action to run tests (#8569)Modded Gamers
The published workflow tests the installer and checks the syntax of known zsh files in the project. Co-authored-by: Marc Cornellà <marc.cornella@live.com>
2019-09-03meta: remove PR triage GitHub action :cry:Marc Cornellà
We do this because the GitHub Actions behavior was changed recently so as to not pass secrets to action runs started from forks, therefore the API token passed cannot be used to change PR labels. There may be an alternative in the future.
2019-08-18meta: add DEBUG_ACTIONS flag to PR triage actionMarc Cornellà
2019-08-13meta: move if condition on workflow to stepsMarc Cornellà
Provisional measure due to "Unexpected value 'if'" error. See https://github.community/t5/GitHub-API-Development-and/jobs-lt-job-id-gt-if-not-working/m-p/28980
2019-08-13meta: convert workflow file to GitHub Actions v2 yml syntaxMarc Cornellà