chore: master -> main

This commit is contained in:
Zach Daniel 2020-10-20 21:52:28 -04:00
parent 310454f59f
commit 2b31cb325b
No known key found for this signature in database
GPG key ID: C377365383138D4B
4 changed files with 22 additions and 6 deletions

View file

@ -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)

View file

@ -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 }}

View file

@ -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

15
config/config.exs Normal file
View file

@ -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