Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
23915e2
initial pruning and renaming
jcarter3 Feb 20, 2026
95e4668
Add parameter for tag limit
jcarter3 Feb 20, 2026
63e7bb1
Merge pull request #1 from jcarter3/tag-limit
jcarter3 Feb 20, 2026
4cae109
Add linting, switch to task
jcarter3 Feb 20, 2026
c50bf22
Merge pull request #3 from jcarter3/add-linting
jcarter3 Feb 20, 2026
2270d25
Experiment with alternate method of passing optional parameters
jcarter3 Feb 20, 2026
3aa0518
Experiment with alternate method of passing optional parameters
jcarter3 Feb 20, 2026
917a46f
Fix linting errors
jcarter3 Feb 20, 2026
b6057a1
Merge pull request #4 from jcarter3/poc-optional-args
jcarter3 Feb 21, 2026
5e58714
Merge pull request #5 from jcarter3/fix-linting
jcarter3 Feb 21, 2026
05eb687
Update interface and code to support bulk pushing of tags.
jcarter3 Feb 26, 2026
30aa08b
Merge pull request #7 from jcarter3/support-multi-tag-push
jcarter3 Mar 4, 2026
94fc3c4
Add workflows for tests, lint, and tag
jcarter3 Mar 5, 2026
1a33fdb
Merge pull request #8 from jcarter3/add-workflows
jcarter3 Mar 5, 2026
6fc35dd
Flatten code so the main package isn't nested
jcarter3 Mar 12, 2026
a0cdafb
Flatten code so the main package isn't nested
jcarter3 Mar 12, 2026
c345ce6
Flatten code so the main package isn't nested
jcarter3 Mar 12, 2026
ab7fb27
Flatten code so the main package isn't nested
jcarter3 Mar 12, 2026
1b0c729
Flatten code so the main package isn't nested
jcarter3 Mar 12, 2026
8fc04d6
Merge pull request #9 from jcarter3/flatten
jcarter3 Mar 13, 2026
7179ad2
Fix lister bug and add example
jcarter3 Mar 13, 2026
bf81cba
Prototype big blob package
jcarter3 Mar 18, 2026
01ad569
Prototype big blob package
jcarter3 Mar 20, 2026
87730da
Prototype big blob package
jcarter3 Mar 20, 2026
32eb33a
Prototype big blob package
jcarter3 Mar 20, 2026
247897d
Merge pull request #10 from jcarter3/big_blob_package
jcarter3 Mar 24, 2026
d3dfe68
Add package for static auth
jcarter3 Mar 24, 2026
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
1 change: 0 additions & 1 deletion .github/CODEOWNERS

This file was deleted.

27 changes: 27 additions & 0 deletions .github/workflows/oci-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: "oci: lint"

on:
pull_request:
paths:
- "./**"
- ".github/workflows/oci-lint.yml"

permissions:
contents: read

jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache-dependency-path: go.sum

- name: Run golangci-lint
uses: golangci/golangci-lint-action@v7
with:
version: v2.10.1
32 changes: 32 additions & 0 deletions .github/workflows/oci-tag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: "oci: tag"

on:
push:
branches:
- main
paths:
- "./**"
- ".github/workflows/oci-tag.yml"

permissions:
contents: write

jobs:
tag:
name: Bump version and tag
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: "0"

- name: Bump version and push tag
uses: anothrNick/github-tag-action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DEFAULT_BUMP: patch
INITIAL_VERSION: 0.0.1
TAG_PREFIX: v
MAJOR_STRING_TOKEN: (MAJOR)
MINOR_STRING_TOKEN: (MINOR)
BRANCH_HISTORY: compare
25 changes: 25 additions & 0 deletions .github/workflows/oci-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: "oci: test"

on:
pull_request:
paths:
- "./**"
- ".github/workflows/oci-test.yml"

permissions:
contents: read

jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache-dependency-path: go.sum

- name: Run tests
run: go test -race -count=1 ./...
50 changes: 0 additions & 50 deletions .github/workflows/push_tip_to_trybot.yaml

This file was deleted.

Loading
Loading