From c4328555ed6b1d3b586bc8633296958d54dddb0a Mon Sep 17 00:00:00 2001 From: Jim Segal Date: Mon, 21 Oct 2024 11:23:15 -0500 Subject: [PATCH 1/4] update readme with usage section --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 8a4a00b..519ec9f 100644 --- a/README.md +++ b/README.md @@ -13,3 +13,9 @@ Currently at version `1.5.0` - `scripts` contains javascript and elixir scripts that are ran on each repository. These could be as simple as copying a file to the repository, or as advanced as changing the `mix.exs` AST to update dependencies. - `templates` contains files that are copied or templated to the repository. + +## Usage + +- Copy [./templates/.github/workflows/common-config.yaml](./templates/.github/workflows/common-config.yaml) file into your repo's `/.github/workflows/` directory. +- Create a PR +- On initial merge and on a [recurring schedule](./templates/.github/workflows/common-config.yaml#L15), updates will be synced with this repository. From 9cc11702c75fbfbfd015c60e11c85fae9e5d23ce Mon Sep 17 00:00:00 2001 From: Jim Segal Date: Mon, 21 Oct 2024 11:24:39 -0500 Subject: [PATCH 2/4] match elixir version in common-config to tool-versions --- templates/.github/workflows/common-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/.github/workflows/common-config.yaml b/templates/.github/workflows/common-config.yaml index 3fc9b15..a9062e0 100644 --- a/templates/.github/workflows/common-config.yaml +++ b/templates/.github/workflows/common-config.yaml @@ -38,7 +38,7 @@ jobs: uses: stordco/actions-elixir/setup@v1 with: github-token: $\{{ secrets.GH_PERSONAL_ACCESS_TOKEN }} - elixir-version: "1.15" + elixir-version: "1.16" otp-version: "26.0" - name: Sync From dbc28052f7ef30deb8a417ab97b6912395e0fa27 Mon Sep 17 00:00:00 2001 From: Jim Segal Date: Mon, 21 Oct 2024 14:36:50 -0500 Subject: [PATCH 3/4] update docs --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 519ec9f..5c1c289 100644 --- a/README.md +++ b/README.md @@ -17,5 +17,6 @@ Currently at version `1.5.0` ## Usage - Copy [./templates/.github/workflows/common-config.yaml](./templates/.github/workflows/common-config.yaml) file into your repo's `/.github/workflows/` directory. -- Create a PR +- Alter your template file by replacing `$\{{` with `${{`. +- Create a PR. - On initial merge and on a [recurring schedule](./templates/.github/workflows/common-config.yaml#L15), updates will be synced with this repository. From c42708b7b992dc367817ca7cbcb8a27985824aa5 Mon Sep 17 00:00:00 2001 From: Jim Segal Date: Mon, 21 Oct 2024 14:43:03 -0500 Subject: [PATCH 4/4] update template to filename --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5c1c289..bc420d4 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,6 @@ Currently at version `1.5.0` ## Usage - Copy [./templates/.github/workflows/common-config.yaml](./templates/.github/workflows/common-config.yaml) file into your repo's `/.github/workflows/` directory. -- Alter your template file by replacing `$\{{` with `${{`. +- Alter your common-config.yaml file by replacing `$\{{` with `${{`. - Create a PR. - On initial merge and on a [recurring schedule](./templates/.github/workflows/common-config.yaml#L15), updates will be synced with this repository.