diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index e6d7cc7..9d99b45 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -1,2 +1,3 @@ # Contributing Guidelines -Contributing guidelines can be found in the core project, [ash](https://github.com/ash-project/ash/blob/master/.github/CONTRIBUTING.md) + +Contributing guidelines can be found in the core project, [ash](https://github.com/ash-project/ash/blob/main/.github/CONTRIBUTING.md) diff --git a/.github/workflows/elixir.yml b/.github/workflows/elixir.yml index 294ad19..2585261 100644 --- a/.github/workflows/elixir.yml +++ b/.github/workflows/elixir.yml @@ -2,12 +2,12 @@ name: Elixir CI on: push: - branches: [master] + branches: [main] tags-ignore: ["v*"] pull_request: - branches: [master] + branches: [main] create: - branches: master + branches: main tags: ["v*"] jobs: build: @@ -112,7 +112,7 @@ jobs: #myelixirstatus See the changelog for more info: - https://github.com/ash-project/ash_phoenix/blob/master/CHANGELOG.md + https://github.com/ash-project/ash_phoenix/blob/main/CHANGELOG.md consumer-key: ${{ secrets.TWITTER_CONSUMER_API_KEY }} consumer-secret: ${{ secrets.TWITTER_CONSUMER_API_SECRET }} access-token: ${{ secrets.TWITTER_ACCESS_TOKEN }} diff --git a/README.md b/README.md index 2110c71..600b671 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ![Elixir CI](https://github.com/ash-project/ash_phoenix/workflows/Ash%20CI/badge.svg) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) -[![Coverage Status](https://coveralls.io/repos/github/ash-project/ash_phoenix/badge.svg?branch=master)](https://coveralls.io/github/ash-project/ash_phoenix?branch=master) +[![Coverage Status](https://coveralls.io/repos/github/ash-project/ash_phoenix/badge.svg?branch=main)](https://coveralls.io/github/ash-project/ash_phoenix?branch=main) [![Hex version badge](https://img.shields.io/hexpm/v/ash_phoenix.svg)](https://hex.pm/packages/ash_phoenix) See the online documentation for `AshPhoenix.LiveView` for the current set of utilities. This is a new integration, and doesn't do much. Currently, the only diff --git a/config/config.exs b/config/config.exs new file mode 100644 index 0000000..527e1cd --- /dev/null +++ b/config/config.exs @@ -0,0 +1,15 @@ +use Mix.Config + +if Mix.env() == :dev do + config :git_ops, + mix_project: AshPhoenix.MixProject, + changelog_file: "CHANGELOG.md", + repository_url: "https://github.com/ash-project/ash_phoenix", + # Instructs the tool to manage your mix version in your `mix.exs` file + # See below for more information + manage_mix_version?: true, + # Instructs the tool to manage the version in your README.md + # Pass in `true` to use `"README.md"` or a string to customize + manage_readme_version: "README.md", + version_tag_prefix: "v" +end