From a32de565c0f0e8196c4bff10e74a2b34215c3ad0 Mon Sep 17 00:00:00 2001 From: ckonstanski Date: Tue, 7 Oct 2025 14:14:16 -0600 Subject: [INF-18026] Octopus token retrieval bug --- lisp/octopus/octopus.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/octopus/octopus.lisp b/lisp/octopus/octopus.lisp index e9e1004..098c611 100644 --- a/lisp/octopus/octopus.lisp +++ b/lisp/octopus/octopus.lisp @@ -5,7 +5,7 @@ (defclass octopus () ((apikey :initarg :apikey - :initform (get-aws-ssm-parameter (sb-ext:posix-getenv "OLO_AWS_BUILD_PROFILE") "/octopus/ode-mgmt/token") + :initform (value (get-aws-ssm-parameter (sb-ext:posix-getenv "OLO_AWS_BUILD_PROFILE") "/octopus/ode-mgmt/token")) :accessor apikey) (baseurl :initarg :baseurl :initform "https://octopus.olobuild.net/api" -- cgit v1.3 From 60689cf792f69e9da7bdabf5f3c9a955daab9693 Mon Sep 17 00:00:00 2001 From: ckonstanski Date: Wed, 8 Oct 2025 10:47:11 -0600 Subject: Adding github stuff --- .gitattributes | 4 ++++ .github/PULL_REQUEST_TEMPLATE.md | 1 + .github/stale.yml | 24 ++++++++++++++++++++++++ 3 files changed, 29 insertions(+) create mode 100644 .gitattributes create mode 100644 .github/PULL_REQUEST_TEMPLATE.md create mode 100644 .github/stale.yml diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..e1b1161 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,4 @@ +############################################################################### +# Set default behavior to automatically normalize line endings. +############################################################################### +* text=auto diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..d483c02 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1 @@ +**Jira Ticket:** https://ololabs.atlassian.net/browse/ diff --git a/.github/stale.yml b/.github/stale.yml new file mode 100644 index 0000000..21d312d --- /dev/null +++ b/.github/stale.yml @@ -0,0 +1,24 @@ +name: Staleness +on: + schedule: + - cron: "12 0 * * *" + +jobs: + stale: + name: Staleness + runs-on: ubuntu-latest + permissions: + pull-requests: write + issues: write + + steps: + - uses: actions/stale@v4 + with: + exempt-pr-labels: "In Progress" + delete-branch: true + days-before-stale: 14 + days-before-close: 7 + stale-pr-label: "Stale" + stale-pr-message: "This pull request is stale because it has been open for 14 days with no activity." + close-pr-message: "This pull request was closed because it has been inactive for 7 days since being marked as stale." + repo-token: ${{ secrets.GITHUB_TOKEN }} -- cgit v1.3