Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: unbrella Gitlab #1

Merged
merged 55 commits into from
Dec 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
d079185
wip
Nov 27, 2023
7a6e556
wip
Nov 28, 2023
04e2ab9
wip
Nov 28, 2023
9d44875
yaml amirite
Nov 28, 2023
df4571d
bleh
Nov 28, 2023
7093fc0
clean up
Nov 28, 2023
ea5ca92
Update upstream image refs
Nov 28, 2023
97b2623
macify
Nov 29, 2023
00df3e1
mmkay
Nov 29, 2023
a02819b
moar macification
Nov 29, 2023
9ebea2e
integers
Nov 29, 2023
79819c3
spell check
Nov 29, 2023
770ac45
Cleanup and add tasks
Nov 30, 2023
f7f2366
wip
Nov 27, 2023
63e8857
wip
Nov 28, 2023
ce5ecd7
wip
Nov 28, 2023
74641fc
yaml amirite
Nov 28, 2023
afbfb29
bleh
Nov 28, 2023
7e51f30
clean up
Nov 28, 2023
9ff7125
Update upstream image refs
Nov 28, 2023
e226c51
macify
Nov 29, 2023
dba913b
mmkay
Nov 29, 2023
766bd31
moar macification
Nov 29, 2023
6e44a23
integers
Nov 29, 2023
829c615
spell check
Nov 29, 2023
4bce774
Cleanup and add tasks
Nov 30, 2023
28f4232
Merge branch 'unbrella' of github.com:defenseunicorns/uds-package-git…
Nov 30, 2023
978949d
Merge branch 'unbrella' of github.com:defenseunicorns/uds-package-git…
Nov 30, 2023
908d14c
Merge branch 'unbrella' of github.com:defenseunicorns/uds-package-git…
Nov 30, 2023
ff4adfb
pipelining
Nov 30, 2023
6479a44
commit lint
Nov 30, 2023
53536e5
typo
Nov 30, 2023
136fe51
github hosted runner
Nov 30, 2023
694ddc2
Create test bundle first
Nov 30, 2023
ca236d0
order matters
Nov 30, 2023
a4cf636
Login
Nov 30, 2023
3c5adab
eyes
Nov 30, 2023
aefa7cc
hate you actions
Nov 30, 2023
c4d6a26
hate you actions
Nov 30, 2023
5846352
hate you actions
Nov 30, 2023
b6004f6
k
Nov 30, 2023
49dd0cf
big boy
Nov 30, 2023
cf1af09
Bump pipeline time
Nov 30, 2023
e2e21c2
moar time
Nov 30, 2023
446bcfa
Bigger boy
Nov 30, 2023
2095e3a
progress
Nov 30, 2023
2ac7899
bundle :eye_roll:
Nov 30, 2023
3038203
wip
Nov 30, 2023
901e133
smaller boy
Nov 30, 2023
6eb8eb0
Bigger boi it is
Dec 1, 2023
99e38fc
cleanup
Dec 1, 2023
54fdb74
cleanup
Dec 1, 2023
f80e917
colons, amirite?
Dec 12, 2023
5f87140
Publish the package
Dec 18, 2023
10677e5
Remove superfluous IDAM baggage
Dec 18, 2023
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
29 changes: 0 additions & 29 deletions .github/actions/comment/action.yml

This file was deleted.

163 changes: 0 additions & 163 deletions .github/actions/e2e/action.yml

This file was deleted.

50 changes: 0 additions & 50 deletions .github/actions/parse-test/action.yml

This file was deleted.

18 changes: 18 additions & 0 deletions .github/actions/save-logs/action.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: save-logs
description: "Save debug logs"

runs:
using: composite
steps:
- name: Fix log permissions
run: |
sudo chown $USER /tmp/zarf-*.log || echo ""
sudo chown $USER /tmp/uds-*.log || echo ""
shell: bash

- uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
with:
name: debug-log
path: |
/tmp/zarf-*.log
/tmp/uds-*.log
30 changes: 30 additions & 0 deletions .github/actions/setup/action.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# action.yml
name: "Setup Environment"
description: "UDS Environment Setup"

runs:
using: "composite"
steps:
- name: Install Zarf
uses: defenseunicorns/setup-zarf@main
with:
# renovate: datasource=github-tags depName=defenseunicorns/zarf versioning=semver
version: v0.31.1
download-init-package: true

- name: Use Node.js latest
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0
with:
node-version: 20

- name: Install k3d
shell: bash
run: curl -s https://raw.githubusercontent.com/k3d-io/k3d/main/install.sh | TAG=v5.6.0 bash

- name: Set up Homebrew
uses: Homebrew/actions/setup-homebrew@master

- name: Install UDS CLI
shell: bash
# renovate: datasource=github-tags depName=defenseunicorns/uds-cli versioning=semver
run: brew install defenseunicorns/tap/uds@0.3.1
28 changes: 28 additions & 0 deletions .github/workflows/commitlint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Metadata

on:
pull_request:
branches: [main]
types: [opened, edited, synchronize]

jobs:
title_check:
runs-on: ubuntu-latest
name: Validate PR Title
permissions:
pull-requests: read

steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
fetch-depth: 0

- name: Setup Node.js
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0

- name: Install commitlint
run: npm install --save-dev @commitlint/{config-conventional,cli}

- name: Lint PR title
run: echo "${{ github.event.pull_request.title }}" | npx commitlint
Loading