Skip to content

Commit bafd218

Browse files
authored
Merge pull request #27 from opendatahub-io/main
Sync new history to Release
2 parents 29ac4fe + dfe0b9f commit bafd218

File tree

3 files changed

+53
-2
lines changed

3 files changed

+53
-2
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Auto Add Issues to Tracking boards
2+
on:
3+
issues:
4+
types:
5+
- opened
6+
jobs:
7+
add-to-project:
8+
name: Add issue to projects
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Generate github-app token
12+
id: app-token
13+
uses: getsentry/action-github-app-token@v2
14+
with:
15+
app_id: ${{ secrets.DEVOPS_APP_ID }}
16+
private_key: ${{ secrets.DEVOPS_APP_PRIVATE_KEY }}
17+
- uses: actions/[email protected]
18+
with:
19+
project-url: https://github.com/orgs/opendatahub-io/projects/40
20+
github-token: ${{ steps.app-token.outputs.token }}
21+
- uses: actions/[email protected]
22+
with:
23+
project-url: https://github.com/orgs/opendatahub-io/projects/45
24+
github-token: ${{ steps.app-token.outputs.token }}
25+
- uses: actions/[email protected]
26+
with:
27+
project-url: https://github.com/orgs/opendatahub-io/projects/42
28+
github-token: ${{ steps.app-token.outputs.token }}

Dockerfile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,10 +179,14 @@ RUN dnf install -y unzip git ninja-build && dnf clean all
179179
RUN cd ~ && \
180180
curl -L -O https://repo.anaconda.com/miniconda/Miniconda3-py39_23.5.2-0-Linux-x86_64.sh && \
181181
chmod +x Miniconda3-*-Linux-x86_64.sh && \
182-
bash ./Miniconda3-*-Linux-x86_64.sh -bf -p /opt/miniconda
182+
bash ./Miniconda3-*-Linux-x86_64.sh -bf -p /opt/miniconda && \
183+
/opt/miniconda/bin/conda update -y --all && \
184+
/opt/miniconda/bin/conda update -y cryptography && \
185+
/opt/miniconda/bin/conda clean -y --all
183186

184187
# Remove tests directory containing test private keys
185-
RUN rm -r /opt/miniconda/pkgs/conda-content-trust-*/info/test/tests
188+
# conda clean will clean this directory but just in case, it will check the directory existence and remove it
189+
RUN if [ -d " /opt/miniconda/pkgs/conda-content-trust-*/info/test/tests" ]; then rm -rf "/opt/miniconda/pkgs/conda-content-trust-*/info/test/tests"; fi
186190

187191
ENV PATH=/opt/miniconda/bin:$PATH
188192

OWNERS

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
approvers:
2+
- anishasthana
3+
- danielezonca
4+
- heyselbi
5+
- israel-hdez
6+
- Jooho
7+
- VedantMahabaleshwarkar
8+
- Xaenalt
9+
- vaibhavjainwiz
10+
11+
reviewers:
12+
- anishasthana
13+
- danielezonca
14+
- heyselbi
15+
- israel-hdez
16+
- Jooho
17+
- VedantMahabaleshwarkar
18+
- Xaenalt
19+
- vaibhavjainwiz

0 commit comments

Comments
 (0)