Skip to content

Commit

Permalink
Prepare for, and release v0.0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pbrisbin authored Sep 12, 2024
1 parent ec446da commit 286e4b4
Show file tree
Hide file tree
Showing 22 changed files with 82 additions and 6 deletions.
File renamed without changes.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @freckle/backenders
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
20 changes: 20 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Release

on:
push:
branches: main

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- id: tag
uses: freckle/haskell-tag-action@v1

- if: steps.tag.outputs.tag
run: stack upload --pvp-bounds lower .
env:
HACKAGE_API_KEY: ${{ secrets.HACKAGE_UPLOAD_API_KEY }}
STACK_YAML: stack-lts20.yaml
3 changes: 3 additions & 0 deletions .stack-all
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[versions]
# Can't go lower because we're using OverloadedRecordDot-et-al
oldest = lts-20
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## [_Unreleased_](https://github.com/freckle/github-app-token/compare/v0.0.0.1...main)

## [v0.0.0.1](https://github.com/freckle/github-app-token/tree/v0.0.0.1)

First tagged pre-release.
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2024 Renaissance Learning Inc

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
9 changes: 9 additions & 0 deletions github-app-token/README.lhs → README.lhs
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# GitHub App Token

[![Hackage](https://img.shields.io/hackage/v/github-app-token.svg?style=flat)](https://hackage.haskell.org/package/github-app-token)
[![Stackage Nightly](http://stackage.org/package/github-app-token/badge/nightly)](http://stackage.org/nightly/package/github-app-token)
[![Stackage LTS](http://stackage.org/package/github-app-token/badge/lts)](http://stackage.org/lts/package/github-app-token)
[![CI](https://github.com/freckle/github-app-token/actions/workflows/ci.yml/badge.svg)](https://github.com/freckle/github-app-token/actions/workflows/ci.yml)

[Generate an installation access token for a GitHub App][docs]

[docs]: https://docs.github.com/en/apps/creating-github-apps/authenticating-with-a-github-app/authenticating-as-a-github-app-installation
Expand Down Expand Up @@ -58,3 +63,7 @@ main = do
example
```
-->
---
[CHANGELOG](./CHANGELOG.md) | [LICENSE](./LICENSE)
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cabal-version: 1.18
-- see: https://github.com/sol/hpack

name: github-app-token
version: 0.0.0.0
version: 0.0.0.1
synopsis: Generate an installation access token for a GitHub App
description: Please see README.md
category: HTTP
Expand Down
1 change: 0 additions & 1 deletion github-app-token/CHANGELOG.md

This file was deleted.

2 changes: 1 addition & 1 deletion github-app-token/package.yaml → package.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: github-app-token
version: 0.0.0.0
version: 0.0.0.1
maintainer: Freckle Education
category: HTTP
github: freckle/github-app-token
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions stack-lts20.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
resolver: lts-20.26
1 change: 1 addition & 0 deletions stack-lts21.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
resolver: lts-21.25
1 change: 1 addition & 0 deletions stack-lts22.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
resolver: lts-22.34
12 changes: 12 additions & 0 deletions stack-nightly.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
resolver: nightly-2024-09-12

extra-deps:
- jwt-0.11.0

# for jtw
- cryptostore-0.3.1.0
- x509-1.7.7
- x509-store-1.6.9

# for cryptostore
- x509-validation-1.6.12
3 changes: 0 additions & 3 deletions stack.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
resolver: lts-22.34
packages:
- github-app-token
# - github-app-token-cli

0 comments on commit 286e4b4

Please sign in to comment.