-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,15 @@ | ||
name: Update packages list | ||
on: | ||
schedule: | ||
- cron: '0 0 1 1-12/3 *' # Run every three months | ||
- cron: '0 0 1 1-12/1 *' # Run every month | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- .github/workflows/license.yml | ||
- update-action | ||
workflow_dispatch: {} | ||
|
||
jobs: | ||
test: | ||
runs-on: elixir | ||
runs-on: ubuntu-latest | ||
name: Update packages list in README | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
@@ -20,6 +19,7 @@ jobs: | |
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
sudo apt-get -y update && sudo apt-get -y install elixir && mix local.hex --force | ||
elixir update_packages_list.exs | ||
git config user.name 'Membrane Bot' | ||
git config user.email '[email protected]' | ||
|