Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Auto update packages list #600

Closed
wants to merge 14 commits into from
2 changes: 1 addition & 1 deletion .formatter.exs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ locals_without_parens =
[
inputs: [
"{lib,test,config,benchmark}/**/*.{ex,exs}",
"mix.exs"
"*.exs"
],
locals_without_parens: locals_without_parens,
export: [
Expand Down
31 changes: 31 additions & 0 deletions .github/workflows/update-packages-list2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Update packages list
on:
schedule:
- cron: '0 0 1 1-12/1 *' # Run every month
push:
branches:
- update-action
workflow_dispatch: {}

jobs:
test:
runs-on: ubuntu-latest
name: Update packages list in README
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: '26.1'
elixir-version: '1.15.6'
- name: Update packages list
env:
GH_TOKEN: ${{ secrets.BOT_TOKEN }}
run: |
elixir update_packages_list.exs
git config user.name 'Membrane Bot'
git config user.email '[email protected]'
git checkout -b auto-update-packages-list
git add README.md
git commit -m"auto update packages list in readme" --allow-empty
git push -f -u origin auto-update-packages-list
gh pr create -B master -H auto-update-packages-list --title 'Auto update packages list' --body ''
Loading
Loading