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: resolve git file attrs #150

Merged
merged 17 commits into from
Jun 11, 2024
3 changes: 3 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Copyright 2024 - 2024, tison <[email protected]> and the HawkEye contributors
# SPDX-License-Identifier: Apache-2.0

# See also https://github.com/rust-lang/rust/issues/44991

Expand Down
3 changes: 3 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Copyright 2024 - 2024, tison <[email protected]> and the HawkEye contributors
# SPDX-License-Identifier: Apache-2.0

root = true

Expand Down
3 changes: 3 additions & 0 deletions .github/actions/docker-push-by-digest/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Copyright 2024 - 2024, tison <[email protected]> and the HawkEye contributors
# SPDX-License-Identifier: Apache-2.0

name: Docker push by digest
description: Build and push Docker image by digest
Expand Down
3 changes: 3 additions & 0 deletions .github/actions/docker-release/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Copyright 2024 - 2024, tison <[email protected]> and the HawkEye contributors
# SPDX-License-Identifier: Apache-2.0

name: Docker release
description: Release Docker Images
Expand Down
3 changes: 3 additions & 0 deletions .github/semantic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Copyright 2024 - 2024, tison <[email protected]> and the HawkEye contributors
# SPDX-License-Identifier: Apache-2.0

# The pull request's title should be fulfilled the following pattern:
#
Expand Down
12 changes: 10 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Copyright 2024 - 2024, tison <[email protected]> and the HawkEye contributors
# SPDX-License-Identifier: Apache-2.0

name: CI
on:
Expand Down Expand Up @@ -38,7 +41,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: korandoru/hawkeye@v4
- uses: Swatinem/rust-cache@v2
- uses: dtolnay/rust-toolchain@nightly
- name: Check Clippy
Expand All @@ -62,11 +64,13 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, buildjet-4vcpu-ubuntu-2204-arm ]
os: [ ubuntu-latest ]
runs-on: ${{matrix.os}}
name: Docker sanity check on ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build and load
uses: docker/build-push-action@v5
with:
Expand Down Expand Up @@ -97,6 +101,8 @@ jobs:
name: Smoke test on ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: Swatinem/rust-cache@v2
- name: Dog feed license check
shell: bash
Expand All @@ -119,6 +125,8 @@ jobs:
name: Smoke test for GitHub Actions on ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Check and fail if unknown
uses: ./
with:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Copyright 2024 - 2024, tison <[email protected]> and the HawkEye contributors
# SPDX-License-Identifier: Apache-2.0

name: Release

Expand Down
Loading