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

update format action #72

Merged
merged 1 commit into from
Nov 24, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ on:
jobs:
build:
name: Format OCaml code
runs-on: macos-latest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: avsm/setup-ocaml@v1.0
with:
ocaml-version: 4.08.1
ocaml-version: 4.09.0
- name: Install dependencies
run: opam install dune ocamlformat
- name: Build
Expand All @@ -21,9 +21,10 @@ jobs:
- name: Create Pull Request
uses: peter-evans/create-pull-request@v1
with:
token: ${{ secrets.REPO_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: ocamlformat fixes
author-name: Anurag Soni
author-email: anurag@sonianurag.com
title: ocamlformat fixes
body: This is an auto-generated PR with fixes by ocamlformat.
labels: ocamlformat, automated pr
Expand Down